14 changed files with 548 additions and 318 deletions
After Width: | Height: | Size: 5.4 KiB |
@ -0,0 +1,22 @@ |
|||||
|
<Window x:Class="DyeingComputer.Windows.UserInf" |
||||
|
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:DyeingComputer.Windows" |
||||
|
xmlns:lang="clr-namespace:DyeingComputer.Properties" |
||||
|
WindowStartupLocation="CenterScreen" |
||||
|
Loaded ="Window_Loaded" |
||||
|
ResizeMode="NoResize" |
||||
|
mc:Ignorable="d" |
||||
|
Title="SUNLIGHT 800" Height="400" Width="400"> |
||||
|
<Grid> |
||||
|
<TextBox x:Name="INF_DATA" Margin="5,5,5,150" TextWrapping="Wrap" FontSize="30" IsReadOnly="True" /> |
||||
|
|
||||
|
<Image Height="100" Width="100" VerticalAlignment="Bottom" FlowDirection="LeftToRight" |
||||
|
HorizontalAlignment="Left" Margin="25,0,0,27" Source="/Lmage/IconParkInfo.png"/> |
||||
|
|
||||
|
<Button Content="{x:Static lang:Resources.YES}" HorizontalAlignment="Right" Height="35" Margin="50,70,20,20" |
||||
|
VerticalAlignment="Bottom" Width="80" Click="YES_Click"/> |
||||
|
</Grid> |
||||
|
</Window> |
@ -0,0 +1,48 @@ |
|||||
|
using DyeingComputer.ViewModel; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Data; |
||||
|
using System.Drawing; |
||||
|
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.Animation; |
||||
|
using System.Windows.Media.Imaging; |
||||
|
using System.Windows.Shapes; |
||||
|
using System.Windows.Threading; |
||||
|
using System.Xml.Linq; |
||||
|
using static DyeingComputer.UserClass.SqliteHelper; |
||||
|
using static DyeingComputer.Windows.ViewStep; |
||||
|
|
||||
|
namespace DyeingComputer.Windows |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// ViewProgram.xaml 的交互逻辑
|
||||
|
/// </summary>
|
||||
|
public partial class UserInf : Window |
||||
|
{ |
||||
|
public string Inf_DAT;//信息
|
||||
|
public UserInf() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
} |
||||
|
private void Window_Loaded(object sender, RoutedEventArgs e) |
||||
|
{ |
||||
|
INF_DATA.Text = Inf_DAT; |
||||
|
} |
||||
|
|
||||
|
private void YES_Click(object sender, RoutedEventArgs e)//确认
|
||||
|
{ |
||||
|
this.Close(); //关闭窗口
|
||||
|
} |
||||
|
|
||||
|
} |
||||
|
} |
Loading…
Reference in new issue