2011-01-01から1年間の記事一覧

WPF

ContextMenuのMenuItemのへのデータバインディングはDateTmeplateでもHierarchicalDataTemplateでもなくStyleでよかった。DateTmeplateにしてしまうとMenuItemのContentの中にもうひとつMenuItemができてしまう。 ただし、セパレータの指定は別。例えばMenuI…

Productivity Power Tools の Ctrl + Click がコピペと間違ってうざったいからなくす

CommandParameter

XAML側 - CommandParameter="{Binding ElementName=MyTextBox, Path=Text}" - ViewModel側 - SayHelloCommand = new RelayCommand( mytext => MessageBox.Show("Hello, " + mytext), // 実行するコマンドの方 mytext => _counter % 2 == 0 // CanFuncの方(R…