10 changed files with 142 additions and 52 deletions
@ -0,0 +1,23 @@ |
|||
<Window x:Class="SunlightCentralizedControlManagement_SCCM_.WindowsView.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:SunlightCentralizedControlManagement_SCCM_.WindowsView" |
|||
xmlns:lang="clr-namespace:SunlightCentralizedControlManagement_SCCM_.Properties" |
|||
WindowStartupLocation="CenterScreen" |
|||
Loaded ="Window_Loaded" |
|||
ResizeMode="NoResize" |
|||
mc:Ignorable="d" |
|||
Title="SUNLIGHT 800" Height="400" Width="800"> |
|||
<Grid> |
|||
<Grid Margin="0,0,0,100"> |
|||
<TextBox x:Name="INF_DATA" Margin="150,5,5,0" TextWrapping="Wrap" FontSize="30" IsReadOnly="True" BorderBrush="#FF673AB7" BorderThickness="2,2,2,2" /> |
|||
<Image Height="100" Width="100" FlowDirection="LeftToRight" HorizontalAlignment="Left" Margin="25,0,0,0" Source="/Lmage/IconParkInfo.png" VerticalAlignment="Center"/> |
|||
</Grid> |
|||
<Button Content="{x:Static lang:Resources.YES}" HorizontalAlignment="Left" Height="45" Margin="50,70,20,20" |
|||
VerticalAlignment="Bottom" Width="100" Click="YES_Click" HorizontalContentAlignment="Center"/> |
|||
<Button Content="{x:Static lang:Resources.NO}" HorizontalAlignment="Right" Height="45" Margin="50,70,20,20" |
|||
VerticalAlignment="Bottom" Width="100" Click="YES_Click"/> |
|||
</Grid> |
|||
</Window> |
@ -0,0 +1,47 @@ |
|||
using SunlightCentralizedControlManagement_SCCM_.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 SunlightCentralizedControlManagement_SCCM_.UserClass.SqliteHelper; |
|||
|
|||
namespace SunlightCentralizedControlManagement_SCCM_.WindowsView |
|||
{ |
|||
/// <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(); //关闭窗口
|
|||
} |
|||
|
|||
} |
|||
} |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 5.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.4 KiB |
Loading…
Reference in new issue