[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
プログラミング、3DCGとその他いろいろについて
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
using System.Windows.Input; namespace WpfApplication1 { public class TestViewModel { public DelegateCommand SqrtCommand { get; private set; } public double Number { get; set; } public TestViewModel() { SqrtCommand = new DelegateCommand( () => { System.Windows.MessageBox.Show(System.Math.Sqrt(Number).ToString()); }, () => Number >= 0 ); } } public class DelegateCommand : ICommand { System.Action execute; System.Func<bool> canExecute; public bool CanExecute(object parameter) { return canExecute(); } public event System.EventHandler CanExecuteChanged { add { CommandManager.RequerySuggested += value; } remove { CommandManager.RequerySuggested -= value; } } public void Execute(object parameter) { execute(); } public DelegateCommand(System.Action execute, System.Func<bool> canExecute) { this.execute = execute; this.canExecute = canExecute; } } }
<Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:src="clr-namespace:WpfApplication1" Title="MainWindow" Height="150" Width="225"> <Window.Resources> <src:TestViewModel x:Key="viewModel"/> </Window.Resources> <StackPanel DataContext="{StaticResource viewModel}"> <TextBox Text="{Binding Number}"/> <Button Content="sqrt" Command="{Binding SqrtCommand}"/> </StackPanel> </Window>