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.
22 lines
1.1 KiB
22 lines
1.1 KiB
<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>
|
|
|