私は次のような事業体を持っています:
public class Entity
{
public string Name;
public string Description;
public Entity Parent;
public ObservableCollection<Entity> Children
}
ListView を Enities のコレクションにバインドし、ネストされたテーブルを次のように取得したいと思います。
http://leeontech.wordpress.com/2008/03/11/listview-masterdetail/
ただし、ネストされたテーブル (親と同じ列を持つ) の列を親テーブルと同じように配置およびサイズ変更したいと考えています。これどうやってするの?