Life is Really Short, Have Your Life!!

ござ先輩の主に技術的なメモ

2014-05-29から1日間の記事一覧

WPFのデータバインディング学習メモ

WPF

WPF4 unleashedより、学んだことをメモ。 コードでバインドするパターン //FtreeはTreeViewで、CurrentFolderはTextBlock Binding b = new Binding(); b.Source = Ftree; b.Path = new PropertyPath("SelectedItem.Header"); CurrentFolder.SetBinding(TextB…