fork download
  1. using System;
  2. using System.Windows;
  3. using System.Windows.Input;
  4.  
  5. namespace WpfApp1
  6. {
  7. /// <summary>
  8. /// MainWindow.xaml の相互作用ロジック
  9. /// </summary>
  10. public partial class MainWindow : Window
  11. {
  12. public MainWindow()
  13. {
  14. InitializeComponent();
  15.  
  16. DataContext = new ViewModel();
  17. }
  18. }
  19.  
  20. class ViewModel
  21. {
  22. FooModel fooModel = new FooModel();
  23.  
  24. public ICommand testbutton { get; set; }
  25.  
  26. public ViewModel()
  27. {
  28. testbutton = new TestButtonCommand { model = fooModel };
  29. }
  30. }
  31.  
  32. class TestButtonCommand : ICommand
  33. {
  34. public event EventHandler CanExecuteChanged;
  35.  
  36. public bool CanExecute(object parameter) => true; // ←ここをfalseにするとボタン押せないのを確認する
  37.  
  38. public void Execute(object parameter)
  39. {
  40. model.test();
  41. }
  42.  
  43. public FooModel model { get; set; }
  44. }
  45.  
  46. class FooModel
  47. {
  48. public void test()
  49. {
  50. MessageBox.Show("Test");
  51. }
  52. }
  53. }
  54.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(10,39): error CS0246: The type or namespace name `Window' could not be found. Are you missing an assembly reference?
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty