コード例 #1
0
ファイル: RoundRobin.cs プロジェクト: lgabryel/hello_wars
 public UserControl GetVisualization(IConfigurable configuration)
 {
     _viewModel = new RoundRobinViewModel(Bots);
     return(new RoundRobinUserControl(_viewModel));
 }
コード例 #2
0
ファイル: ResetCommand.cs プロジェクト: lgabryel/hello_wars
 public ResetCommand(RoundRobinViewModel viewModel)
 {
     _viewModel = viewModel;
 }
コード例 #3
0
 public RoundRobinUserControl(RoundRobinViewModel viewModel)
 {
     DataContext = viewModel;
     InitializeComponent();
 }