10 changed files with 83 additions and 29 deletions
After Width: | Height: | Size: 25 KiB |
@ -0,0 +1,23 @@ |
|||||
|
<Window x:Class="formula_manage.Help" |
||||
|
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" |
||||
|
mc:Ignorable="d" |
||||
|
Title="SUNLIGHT" Height="480" Width="300" WindowStartupLocation="CenterScreen" ResizeMode="NoResize"> |
||||
|
<Grid> |
||||
|
<Rectangle Height="150" Margin="0,20,0,0" VerticalAlignment="Top"> |
||||
|
<Rectangle.Fill> |
||||
|
<ImageBrush ImageSource="/Windows/sunlight_logotext.jpg"/> |
||||
|
</Rectangle.Fill> |
||||
|
</Rectangle> |
||||
|
<Label Content="SUNLIGHT (SCCM)" HorizontalAlignment="Left" Height="35" Margin="65,210,0,0" VerticalAlignment="Top" Width="155" FontSize="16"/> |
||||
|
<Label Content="TEL:0575-88202605" HorizontalAlignment="Left" Height="35" Margin="55,245,0,0" VerticalAlignment="Top" Width="175" FontSize="16"/> |
||||
|
<Label Content="VER:BETA 1.0.50" HorizontalAlignment="Left" Height="35" Margin="65,365,0,0" VerticalAlignment="Top" Width="175" FontSize="16"/> |
||||
|
<Label Content="SUNLIGHT © 2023" HorizontalAlignment="Left" Height="35" Margin="65,395,0,0" VerticalAlignment="Top" Width="175" FontSize="16"/> |
||||
|
<Label Content="FAX:0575-88029740" HorizontalAlignment="Left" Height="35" Margin="55,285,0,0" VerticalAlignment="Top" Width="175" FontSize="16"/> |
||||
|
<Label Content="WEB:www.secolor.cn" HorizontalAlignment="Left" Height="35" Margin="55,325,0,0" VerticalAlignment="Top" Width="185" FontSize="16"/> |
||||
|
|
||||
|
</Grid> |
||||
|
</Window> |
@ -0,0 +1,16 @@ |
|||||
|
using System.Windows; |
||||
|
|
||||
|
namespace formula_manage |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Help.xaml 的交互逻辑
|
||||
|
/// </summary>
|
||||
|
public partial class Help : Window |
||||
|
{ |
||||
|
public Help() |
||||
|
{ |
||||
|
WindowStartupLocation = WindowStartupLocation.CenterScreen; |
||||
|
InitializeComponent(); |
||||
|
} |
||||
|
} |
||||
|
} |
After Width: | Height: | Size: 231 KiB |
Loading…
Reference in new issue