SampleSmart 1.0.0.0
SampleSmart 사용 방법을 보여 주는 예제 프로젝트입니다.
로딩중...
검색중...
일치하는것 없음
SerialPortTestView.xaml.cs
이 파일의 문서화 페이지로 가기
1using Dreamine.MVVM.Core;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7using System.Windows;
8using System.Windows.Controls;
9using System.Windows.Data;
10using System.Windows.Documents;
11using System.Windows.Input;
12using System.Windows.Media;
13using System.Windows.Media.Imaging;
14using System.Windows.Navigation;
15using System.Windows.Shapes;
16
18{
27 public partial class SerialPortTestView : UserControl
28 {
38 {
39 InitializeComponent();
40
41 DataContext ??= DMContainer.Resolve<SerialPortTestViewModel>();
42 }
43 }
44}