33 lines
807 B
C#
33 lines
807 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Windows;
|
|||
|
|
using System.Windows.Controls;
|
|||
|
|
using System.Windows.Data;
|
|||
|
|
using System.Windows.Documents;
|
|||
|
|
using System.Windows.Input;
|
|||
|
|
using System.Windows.Media;
|
|||
|
|
using System.Windows.Media.Imaging;
|
|||
|
|
using System.Windows.Navigation;
|
|||
|
|
using System.Windows.Shapes;
|
|||
|
|
using 垂直剖面动态观测系统.Common;
|
|||
|
|
|
|||
|
|
namespace 垂直剖面动态观测系统.View
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ConBoxPageView.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class ConboxPageView : UserControl
|
|||
|
|
{
|
|||
|
|
public ConboxPageView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
|
|||
|
|
GlobalValues model = new GlobalValues();
|
|||
|
|
this.DataContext = model;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|