コード例 #1
0
ファイル: GetValuesView.xaml.cs プロジェクト: Budnic/blok3
        public GetValues()
        {
            InitializeComponent();


            Connection.Connection connection = new Connection.Connection();
            connection.Connect();
            INetworkModelGDAContract proxy = connection.Proxy;

            DataContext = new GetValuesViewModel(proxy);
        }
コード例 #2
0
 public GetValuesView()
 {
     InitializeComponent();
     DataContext = new GetValuesViewModel(this);
 }
コード例 #3
0
 public GetValuesCommand(GetValuesViewModel vm)
 {
     this.vm = vm;
 }
コード例 #4
0
ファイル: GetValuesCommand.cs プロジェクト: Budnic/blok3
 public GetValuesCommand(GetValuesViewModel vm)
 {
     viewModel = vm;
 }