首次提交:添加src文件夹代码
This commit is contained in:
29
Cowain.Bake.UI/DataQuery/Views/CurveView.xaml.cs
Normal file
29
Cowain.Bake.UI/DataQuery/Views/CurveView.xaml.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using Cowain.Bake.BLL;
|
||||
using Cowain.Bake.Common.Core;
|
||||
using System;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using Unity;
|
||||
|
||||
namespace Cowain.Bake.UI.DataQuery.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Curve.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class CurveView : UserControl
|
||||
{
|
||||
private IUnityContainer _unityContainer;
|
||||
public CurveView(IUnityContainer unityContainer)
|
||||
{
|
||||
InitializeComponent();
|
||||
_unityContainer = unityContainer;
|
||||
}
|
||||
|
||||
private void CheckComboBox_Selected(object sender, RoutedEventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user