You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
using MaterialDesignThemes.Wpf;
|
|
using OpenTK.Graphics.ES11;
|
|
using SunlightCentralizedControlManagement_SCCM_.ViewModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Net;
|
|
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.Markup;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
using System.Xaml;
|
|
using static SunlightCentralizedControlManagement_SCCM_.UserClass.SqliteHelper;
|
|
|
|
namespace SunlightCentralizedControlManagement_SCCM_.View
|
|
{
|
|
/// <summary>
|
|
/// CurveView.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class SYSSetView : UserControl
|
|
{
|
|
public SYSSetView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void UserControl_Loaded(object sender, RoutedEventArgs e)
|
|
{
|
|
Picture.Content = new View.EngineerSetView();
|
|
}
|
|
|
|
private void ListViewItem_Machine(object sender, MouseButtonEventArgs e)
|
|
{
|
|
Picture.Content = new View.MachinesSet();
|
|
}
|
|
|
|
private void ListViewItem_EngineerSet(object sender, MouseButtonEventArgs e)
|
|
{
|
|
Picture.Content = new View.EngineerSetView();
|
|
}
|
|
private void ListViewItem_log(object sender, MouseButtonEventArgs e)
|
|
{
|
|
Picture.Content = new View.LogView();
|
|
}
|
|
|
|
private void ListViewItem_ConveyorCenters(object sender, MouseButtonEventArgs e)
|
|
{
|
|
Picture.Content = new View.DispenseMachinesSet();
|
|
}
|
|
}
|
|
}
|
|
|