7 changed files with 154 additions and 9 deletions
@ -0,0 +1,62 @@ |
|||||
|
<UserControl x:Class="SunlightCentralizedControlManagement_SCCM_.View.ProductionPlanningView " |
||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
|
xmlns:local="clr-namespace:SunlightCentralizedControlManagement_SCCM_.View" |
||||
|
xmlns:lang="clr-namespace:SunlightCentralizedControlManagement_SCCM_.Properties" |
||||
|
xmlns:ConvertMoels="clr-namespace:SunlightCentralizedControlManagement_SCCM_.ConvertMoels" |
||||
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" |
||||
|
mc:Ignorable="d" Loaded="UserControl_Loaded" |
||||
|
d:DesignHeight="630" d:DesignWidth="1280"> |
||||
|
<UserControl.Resources> |
||||
|
<ConvertMoels:RowToIndexConverter x:Key="RowToIndexConverter"/> |
||||
|
</UserControl.Resources> |
||||
|
<Grid> |
||||
|
|
||||
|
<StackPanel x:Name="scr" VerticalAlignment="Bottom" Height="60" Background="#FF00204E" Orientation="Horizontal"> |
||||
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
||||
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Quit" x:Name="Quit"> |
||||
|
<StackPanel Orientation="Horizontal" > |
||||
|
<materialDesign:PackIcon Kind="PresenceExit" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
||||
|
<TextBlock Text="{x:Static lang:Resources.Quit}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
||||
|
</StackPanel> |
||||
|
</ListViewItem> |
||||
|
</ListView> |
||||
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
||||
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_edit" IsEnabled="False" x:Name="edit"> |
||||
|
<StackPanel Orientation="Horizontal"> |
||||
|
<materialDesign:PackIcon Kind="Edit" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
||||
|
<TextBlock Text="{x:Static lang:Resources.edit}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
||||
|
</StackPanel> |
||||
|
</ListViewItem> |
||||
|
</ListView> |
||||
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
||||
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Insert" IsEnabled="False" x:Name="Insert"> |
||||
|
<StackPanel Orientation="Horizontal"> |
||||
|
<materialDesign:PackIcon Kind="InsertComment" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
||||
|
<TextBlock Text="{x:Static lang:Resources.Insert}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
||||
|
</StackPanel> |
||||
|
</ListViewItem> |
||||
|
</ListView> |
||||
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
||||
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Save" x:Name="Save"> |
||||
|
<StackPanel Orientation="Horizontal"> |
||||
|
<materialDesign:PackIcon Kind="Note" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
||||
|
<TextBlock Text="{x:Static lang:Resources.Save}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
||||
|
</StackPanel> |
||||
|
</ListViewItem> |
||||
|
</ListView> |
||||
|
<ListView ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="#FF1368BD"> |
||||
|
<ListViewItem Width="150" MouseLeftButtonUp="ListViewItem_Delete" IsEnabled="False" x:Name="Delete"> |
||||
|
<StackPanel Orientation="Horizontal"> |
||||
|
<materialDesign:PackIcon Kind="Delete" Width="40" Height="30" Margin="10" VerticalAlignment="Center" Foreground="#FF1368BD"/> |
||||
|
<TextBlock Text="{x:Static lang:Resources.Delete}" VerticalAlignment="Center" Margin="20 10" Foreground="White"/> |
||||
|
</StackPanel> |
||||
|
</ListViewItem> |
||||
|
</ListView> |
||||
|
</StackPanel> |
||||
|
|
||||
|
|
||||
|
</Grid> |
||||
|
</UserControl> |
@ -0,0 +1,75 @@ |
|||||
|
using SunlightCentralizedControlManagement_SCCM_.UserClass; |
||||
|
using SunlightCentralizedControlManagement_SCCM_.WindowsView; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Data; |
||||
|
using System.Data.Entity; |
||||
|
using System.Data.SQLite; |
||||
|
using System.Diagnostics.Eventing.Reader; |
||||
|
using System.Linq; |
||||
|
using System.Net; |
||||
|
using System.Net.NetworkInformation; |
||||
|
using System.Security.Cryptography; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
using System.Windows; |
||||
|
using System.Windows.Controls; |
||||
|
using System.Windows.Controls.Primitives; |
||||
|
using System.Windows.Data; |
||||
|
using System.Windows.Documents; |
||||
|
using System.Windows.Input; |
||||
|
using System.Windows.Media; |
||||
|
using System.Windows.Media.Animation; |
||||
|
using System.Windows.Media.Imaging; |
||||
|
using System.Windows.Navigation; |
||||
|
using System.Windows.Shapes; |
||||
|
using System.Xml.Linq; |
||||
|
using static SunlightCentralizedControlManagement_SCCM_.UserClass.SqliteHelper; |
||||
|
using static SunlightCentralizedControlManagement_SCCM_.WindowsView.ViewStep; |
||||
|
using static System.Windows.Forms.VisualStyles.VisualStyleElement; |
||||
|
|
||||
|
namespace SunlightCentralizedControlManagement_SCCM_.View |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// ProgramgroupView.xaml 的交互逻辑
|
||||
|
/// </summary>
|
||||
|
public partial class ProductionPlanningView : UserControl |
||||
|
{ |
||||
|
public ProductionPlanningView() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
} |
||||
|
|
||||
|
private SQLiteHelper SQLiteHelpers = null; //定义数据库
|
||||
|
private readonly string DBAddress = Environment.CurrentDirectory + "\\DataBase\\SCCM.db"; //数据库路径
|
||||
|
|
||||
|
private void UserControl_Loaded(object sender, RoutedEventArgs e)//打开页面时的操作
|
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
private void ListViewItem_Quit(object sender, System.Windows.Input.MouseButtonEventArgs e)//退出事件
|
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
private void ListViewItem_edit(object sender, System.Windows.Input.MouseButtonEventArgs e)//编辑事件
|
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
private void ListViewItem_Insert(object sender, System.Windows.Input.MouseButtonEventArgs e)//插入事件
|
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
private void ListViewItem_Save(object sender, System.Windows.Input.MouseButtonEventArgs e)//保存事件
|
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
private void ListViewItem_Delete(object sender, System.Windows.Input.MouseButtonEventArgs e)//删除事件
|
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
} |
||||
|
} |
Loading…
Reference in new issue