4 changed files with 344 additions and 0 deletions
@ -0,0 +1,94 @@ |
|||
<Window x:Class="formula_manage.Windows.fabric" |
|||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|||
xmlns:local="clr-namespace:formula_manage.Windows" |
|||
xmlns:ConvertMoels="clr-namespace:formula_manage.ConvertMoels" |
|||
xmlns:viewmodel="clr-namespace:formula_manage.ViewModel" |
|||
mc:Ignorable="d" Loaded="fabric_Loaded" |
|||
Title="fabric" Height="720" Width="1100" MaxHeight="720" MaxWidth="1100" MinHeight="720" MinWidth="1100" |
|||
BorderBrush="White" Background="#FFE0E0E0"> |
|||
<Grid> |
|||
<!--原料表--> |
|||
<DataGrid x:Name="DataGridfabric" MouseDoubleClick="DataGridfabric_MouseDoubleClick" SelectionMode="Single" AlternationCount="2" IsReadOnly="True" Margin="15,15,15,150" d:ItemsSource="{d:SampleData ItemCount=999}" AutoGenerateColumns="False" MinColumnWidth="30" |
|||
HorizontalGridLinesBrush="#FFC9C9C9" VerticalGridLinesBrush="#FFC9C9C9" GridLinesVisibility="All" BorderBrush="#CCCCCC" |
|||
BorderThickness="1,1,1,1" ColumnHeaderHeight="40" HorizontalContentAlignment="Right" Grid.ColumnSpan="2" |
|||
CanUserResizeRows="False" CanUserAddRows="False" CanUserDeleteRows="False" CanUserReorderColumns="False" |
|||
CanUserResizeColumns="False" CanUserSortColumns="False" HeadersVisibility ="Column"> |
|||
<DataGrid.RowStyle > |
|||
<Style TargetType="{x:Type DataGridRow}"> |
|||
<Style.Triggers> |
|||
<Trigger Property="ItemsControl.AlternationIndex" Value="0"> |
|||
<Setter Property="Background" Value="#FFFFFFFF" /> |
|||
</Trigger> |
|||
<Trigger Property="ItemsControl.AlternationIndex" Value="1"> |
|||
<Setter Property="Background" Value="#FFF0F0F0" /> |
|||
</Trigger> |
|||
<Trigger Property="IsMouseOver" Value="False"> |
|||
</Trigger> |
|||
</Style.Triggers> |
|||
</Style> |
|||
</DataGrid.RowStyle> |
|||
<DataGrid.CellStyle> |
|||
<Style TargetType="DataGridCell"> |
|||
<Setter Property="BorderThickness" Value="0"/> |
|||
<Setter Property="MinWidth" Value="20"/> |
|||
<Style.Triggers> |
|||
<Trigger Property="IsSelected" Value="True"> |
|||
<Setter Property="Background" Value="#FFC0C0C0"/> |
|||
<Setter Property="BorderBrush" Value="#FFC0C0C0"/> |
|||
<Setter Property="Foreground" Value="#000000"/> |
|||
</Trigger> |
|||
</Style.Triggers> |
|||
</Style> |
|||
</DataGrid.CellStyle> |
|||
<DataGrid.Columns> |
|||
<!--列信息绑定--> |
|||
<DataGridTemplateColumn Header=" 序号" Width="50" MinWidth="10" IsReadOnly="True"> |
|||
<DataGridTemplateColumn.CellTemplate> |
|||
<DataTemplate> |
|||
<TextBlock FontSize="15" Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type DataGridRow}}, Path=Header}" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="10,0,0,0"></TextBlock> |
|||
</DataTemplate> |
|||
</DataGridTemplateColumn.CellTemplate> |
|||
</DataGridTemplateColumn> |
|||
<DataGridTextColumn Header="布种代码" Binding="{Binding Code}" Width="250" FontSize="15" MaxWidth="500" MinWidth="100" CanUserReorder="False"/> |
|||
<DataGridTextColumn Header="布种名称" Binding="{Binding Name}" Width="250" FontSize="15" MaxWidth="500" MinWidth="200" CanUserReorder="False"/> |
|||
<DataGridTextColumn Header="码重(g/Yard)" Binding="{Binding GYard}" Width="100" FontSize="15" MaxWidth="200" MinWidth="20" CanUserReorder="False"/> |
|||
<DataGridTextColumn Header="备注" Binding="{Binding Remark}" Width="500" FontSize="15" MaxWidth="1500" MinWidth="150" CanUserReorder="False"/> |
|||
</DataGrid.Columns> |
|||
</DataGrid> |
|||
<!--布种代码--> |
|||
<TextBox x:Name="fabric_code" HorizontalAlignment="Left" Height="30" Margin="105,0,0,100" Text="" |
|||
VerticalAlignment="Bottom" Width="250" FontSize="22" MaxLines="1" MaxLength="25" |
|||
InputMethod.IsInputMethodEnabled="False"/> |
|||
<TextBlock HorizontalAlignment="Left" Height="30" Margin="15,0,0,100" TextWrapping="Wrap" Text="布种代码" |
|||
VerticalAlignment="Bottom" Width="100" FontSize="20"/> |
|||
<!--布种名称--> |
|||
<TextBox x:Name="fabric_name" HorizontalAlignment="Left" Height="30" Margin="465,0,0,100" Text="" |
|||
VerticalAlignment="Bottom" Width="250" FontSize="22" MaxLines="1" MaxLength="50"/> |
|||
<TextBlock HorizontalAlignment="Left" Height="30" Margin="375,0,0,100" TextWrapping="Wrap" Text="布种名称" |
|||
VerticalAlignment="Bottom" Width="100" FontSize="20"/> |
|||
<!--备注--> |
|||
<TextBox x:Name="fabric_Remark" HorizontalAlignment="Left" Height="30" Margin="105,0,0,50" Text="" |
|||
VerticalAlignment="Bottom" Width="340" FontSize="22" MaxLines="1" MaxLength="25"/> |
|||
<TextBlock HorizontalAlignment="Left" Height="30" Margin="15,0,0,50" TextWrapping="Wrap" Text="备注" |
|||
VerticalAlignment="Bottom" Width="120" FontSize="20"/> |
|||
<!--码重--> |
|||
<TextBox x:Name="fabric_GYard" HorizontalAlignment="Left" Height="30" Margin="585,0,0,50" Text="500" |
|||
VerticalAlignment="Bottom" Width="130" FontSize="22" MaxLines="1" MaxLength="25"/> |
|||
<TextBlock HorizontalAlignment="Left" Height="30" Margin="465,0,0,50" TextWrapping="Wrap" Text="码重(g/Yard)" |
|||
VerticalAlignment="Bottom" Width="120" FontSize="20"/> |
|||
|
|||
<!--存储按钮--> |
|||
<Button Content="存储" HorizontalAlignment="Left" Height="50" Margin="795,0,0,60" |
|||
VerticalAlignment="Bottom" Width="100" FontSize="30" Background="#FFEFEFEF" BorderBrush="White" |
|||
Click="Button_Preservation"> |
|||
</Button> |
|||
<!--删除按钮--> |
|||
<Button Content="删除" HorizontalAlignment="Left" Height="50" Margin="935,0,0,60" |
|||
VerticalAlignment="Bottom" Width="100" FontSize="30" Background="#FFEFEFEF" BorderBrush="White" |
|||
Click="Button_Delete"> |
|||
</Button> |
|||
</Grid> |
|||
</Window> |
|||
@ -0,0 +1,241 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Text.RegularExpressions; |
|||
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.Shapes; |
|||
using GalaSoft.MvvmLight; |
|||
using formula_manage.SQLModels; |
|||
using System.Data.SqlClient; |
|||
using System.Data; |
|||
using System.Windows.Forms; |
|||
using static System.Windows.Forms.VisualStyles.VisualStyleElement.Button; |
|||
using Xceed.Wpf.AvalonDock.Themes; |
|||
using static System.Net.Mime.MediaTypeNames; |
|||
|
|||
namespace formula_manage.Windows |
|||
{ |
|||
/// <summary>
|
|||
/// fabric.xaml 的交互逻辑
|
|||
/// </summary>
|
|||
public partial class fabric : Window |
|||
{ |
|||
public string INIPath = Convert.ToString(System.AppDomain.CurrentDomain.BaseDirectory) + "formula.ini"; //配置文件路径
|
|||
|
|||
DataTable dataTable = new DataTable(); //建立缓存
|
|||
|
|||
int Button_ID = 0; |
|||
string TEXT_SQLIP; |
|||
string TEXT_SQLNAME; |
|||
string TEXT_SQMOD; |
|||
string TEXT_SQLUSER; |
|||
string TEXT_SQLPASWOR; |
|||
string Connstr_SC; |
|||
|
|||
public fabric() |
|||
{ |
|||
WindowStartupLocation = WindowStartupLocation.CenterScreen; |
|||
InitializeComponent(); |
|||
} |
|||
|
|||
private async void fabric_Loaded(object sender, RoutedEventArgs e)//打开页面执行
|
|||
{ |
|||
UserClass.IniFile.IniFiles Configini = new UserClass.IniFile.IniFiles(INIPath);//生效配置读取
|
|||
this.DataGridfabric.LoadingRow += new EventHandler<DataGridRowEventArgs>(this.DataGridEquipment_LoadingRow);//生成序列号
|
|||
|
|||
TEXT_SQLIP = Configini.IniReadvalue("SQL_SERVER", "SQL1"); //读配置文件
|
|||
TEXT_SQLNAME = Configini.IniReadvalue("SQL_SERVER", "SQL2"); |
|||
TEXT_SQMOD = Configini.IniReadvalue("SQL_SERVER", "SQL3"); |
|||
TEXT_SQLUSER = Configini.IniReadvalue("SQL_SERVER", "SQL4"); |
|||
TEXT_SQLPASWOR = Configini.IniReadvalue("SQL_SERVER", "SQL5"); |
|||
if (TEXT_SQMOD == "0") //判断连接方式
|
|||
{ |
|||
Connstr_SC = "server=" + TEXT_SQLIP + ";database=" + TEXT_SQLNAME + ";Trusted_Connection=SSPI"; |
|||
} |
|||
else |
|||
{ |
|||
Connstr_SC = "server=" + TEXT_SQLIP + ";database=" + TEXT_SQLNAME + ";User ID=" + TEXT_SQLUSER + ";Password=" + TEXT_SQLPASWOR; |
|||
} |
|||
|
|||
string fabric_sql = "SELECT Code ,Name , GYard , Remark FROM [Dispensing].[dbo].[PRODUCTION_Material]";//查询语句
|
|||
|
|||
SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
|
|||
try |
|||
{ |
|||
await conn_SC.OpenAsync(); //打开数据连接
|
|||
SqlDataAdapter fabric_data = new SqlDataAdapter(fabric_sql, Connstr_SC); //查询
|
|||
|
|||
fabric_data.Fill(dataTable); //查询结果存入缓存
|
|||
conn_SC.Close(); //关闭连接
|
|||
|
|||
DataGridfabric.ItemsSource = dataTable.DefaultView; //数据加入表格
|
|||
} |
|||
catch (Exception) |
|||
{ |
|||
System.Windows.MessageBox.Show("请求信息失败,检查连接"); |
|||
return; |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 生成序列号的方法
|
|||
/// </summary>
|
|||
private void DataGridEquipment_LoadingRow(object sender, DataGridRowEventArgs e) |
|||
{ |
|||
e.Row.Header = e.Row.GetIndex() + 1; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 查询数据库的方法
|
|||
/// </summary>
|
|||
private async void GridSql() |
|||
{ |
|||
string fabric_sql = "SELECT Code ,Name , GYard , Remark FROM [Dispensing].[dbo].[PRODUCTION_Material]";//查询语句
|
|||
|
|||
SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
|
|||
|
|||
try |
|||
{ |
|||
await conn_SC.OpenAsync(); //打开数据连接
|
|||
SqlDataAdapter fabric_data = new SqlDataAdapter(fabric_sql, Connstr_SC); //查询
|
|||
|
|||
dataTable.Clear(); |
|||
fabric_data.Fill(dataTable); //查询结果存入缓存
|
|||
conn_SC.Close(); //关闭连接
|
|||
|
|||
DataGridfabric.ItemsSource = dataTable.DefaultView; //数据加入表格
|
|||
} |
|||
catch (Exception) |
|||
{ |
|||
System.Windows.MessageBox.Show("请求信息失败,检查连接"); |
|||
return; |
|||
} |
|||
} |
|||
|
|||
private async void Button_Preservation(object sender, RoutedEventArgs e)//保存按钮事件
|
|||
{ |
|||
Regex re_number = new Regex(@"^[0-9]+(.[0-9]{1,4})?$");//校验用正则表达式有1~2位小数的正实数
|
|||
string fabric_sql; |
|||
|
|||
if ((re_number.IsMatch(this.fabric_GYard.Text) == false) && (fabric_GYard.Text != "")) |
|||
System.Windows.MessageBox.Show("ERR:单位码重错误", "错误");//检查价格输入信息
|
|||
else |
|||
if (string.IsNullOrEmpty(this.fabric_code.Text)) |
|||
System.Windows.MessageBox.Show("ERR:无效的原料信息", "错误");//检查原料代码
|
|||
else |
|||
if (string.IsNullOrEmpty(this.fabric_name.Text)) |
|||
System.Windows.MessageBox.Show("ERR:无效的原料名称", "错误");//检查原料名
|
|||
else |
|||
{ |
|||
try |
|||
{ |
|||
SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
|
|||
fabric_sql = "SELECT count(*) FROM [Dispensing].[dbo].[PRODUCTION_Material] WHERE Code = '" + fabric_code.Text + " '";//查询语句
|
|||
await conn_SC.OpenAsync(); //打开数据连
|
|||
SqlCommand cmd = new SqlCommand(fabric_sql, conn_SC); //查询记录数
|
|||
int count = Convert.ToInt32(cmd.ExecuteScalar()); //显示记录数
|
|||
conn_SC.Close(); //关闭连接
|
|||
|
|||
if (count == 0) |
|||
{ |
|||
fabric_sql = string.Format("INSERT INTO[Dispensing].[dbo].[PRODUCTION_Material](Code ,Name , GYard , Remark) " + |
|||
"VALUES ('" + fabric_code.Text + "','" + fabric_name.Text + "','" + fabric_GYard.Text + "','" + fabric_Remark.Text + "')"); |
|||
await conn_SC.OpenAsync(); //打开数据连接
|
|||
SqlCommand INSERT_cmd = new SqlCommand(fabric_sql, conn_SC); |
|||
int sql_in = INSERT_cmd.ExecuteNonQuery(); //执行语句
|
|||
|
|||
conn_SC.Close(); //关闭连接
|
|||
if (sql_in == 0) |
|||
{ |
|||
System.Windows.MessageBox.Show("添加失败"); |
|||
} |
|||
else |
|||
{ |
|||
GridSql(); |
|||
System.Windows.MessageBox.Show("添加完成"); |
|||
} |
|||
} |
|||
else |
|||
{ |
|||
fabric_sql = string.Format("UPDATE [Dispensing].[dbo].[PRODUCTION_Material] SET Name='" + fabric_name.Text + "',GYard='" + fabric_GYard.Text + "',Remark='" + fabric_Remark.Text + "' Where Code='"+ fabric_code.Text + "'"); |
|||
await conn_SC.OpenAsync(); //打开数据连接
|
|||
SqlCommand INSERT_cmd = new SqlCommand(fabric_sql, conn_SC); |
|||
int sql_in = INSERT_cmd.ExecuteNonQuery(); //执行语句
|
|||
|
|||
conn_SC.Close(); //关闭连接
|
|||
if (sql_in == 0) |
|||
{ |
|||
System.Windows.MessageBox.Show("C0110-1:修改失败"); |
|||
} |
|||
else |
|||
{ |
|||
GridSql(); |
|||
|
|||
System.Windows.MessageBox.Show("修改完成"); |
|||
} |
|||
} |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
System.Windows.MessageBox.Show("请求失败,检查连接"); |
|||
return; |
|||
} |
|||
} |
|||
} |
|||
|
|||
private async void Button_Delete(object sender, RoutedEventArgs e)//删除按钮事件
|
|||
{ |
|||
string ShowProductName = "是否删除【" + this.fabric_name.Text + "】" + this.fabric_code.Text;//获取原料信息并拼接提示字符串
|
|||
MessageBoxResult showProductName = System.Windows.MessageBox.Show(ShowProductName, "提示", MessageBoxButton.YesNo, MessageBoxImage.Warning, MessageBoxResult.Yes);//弹窗提示是否删除目标原料
|
|||
if (showProductName == MessageBoxResult.Yes)//判断是否删除原料
|
|||
{ |
|||
|
|||
string Stuff_sql = string.Format("DELETE FROM [Dispensing].[dbo].[PRODUCTION_Material] WHERE Code ='" + fabric_code.Text.ToString() + "'"); |
|||
|
|||
SqlConnection conn_SC = new SqlConnection(Connstr_SC); //实例化
|
|||
try |
|||
{ |
|||
await conn_SC.OpenAsync(); //打开数据连接
|
|||
SqlCommand INSERT_cmd = new SqlCommand(Stuff_sql, conn_SC); |
|||
int sql_in = INSERT_cmd.ExecuteNonQuery(); //执行语句
|
|||
conn_SC.Close(); //关闭连接
|
|||
if (sql_in == 0) |
|||
{ |
|||
System.Windows.MessageBox.Show("C0110-2:删除失败", "错误");//判断执行是否成功
|
|||
} |
|||
else |
|||
{ |
|||
GridSql(); |
|||
} |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
System.Windows.MessageBox.Show("请求失败,检查连接"); |
|||
return; |
|||
} |
|||
} |
|||
} |
|||
|
|||
private void DataGridfabric_MouseDoubleClick(object sender, MouseButtonEventArgs e)//数据表双击事件
|
|||
{ |
|||
int rownum = DataGridfabric.SelectedIndex;//获取鼠标选中行并定义变量
|
|||
if (rownum != -1)//判断鼠标定位是否有效
|
|||
{ |
|||
/*定位选中行及指定列单元格文本信息*/ |
|||
fabric_code.Text = (DataGridfabric.Columns[1].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位第0列,代码
|
|||
fabric_name.Text = (DataGridfabric.Columns[2].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位第1列,名称
|
|||
fabric_Remark.Text = (DataGridfabric.Columns[4].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位,
|
|||
fabric_GYard.Text = (DataGridfabric.Columns[3].GetCellContent(DataGridfabric.Items[rownum]) as TextBlock).Text;//定位,
|
|||
} |
|||
} |
|||
|
|||
} |
|||
} |
|||
Loading…
Reference in new issue