7 changed files with 84 additions and 4 deletions
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 59 KiB |
@ -0,0 +1,22 @@ |
|||
<Window x:Class="Audit.Windows.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:Audit.Windows" |
|||
mc:Ignorable="d" |
|||
Title="SUNLIGHT" Height="450" Width="300" WindowStartupLocation="CenterScreen" ResizeMode="NoResize"> |
|||
<Grid> |
|||
<Rectangle HorizontalAlignment="Center" Height="165" Margin="0,20,0,0" VerticalAlignment="Top" Width="170"> |
|||
<Rectangle.Fill> |
|||
<ImageBrush ImageSource="/Logo/sunlight_sc.png"/> |
|||
</Rectangle.Fill> |
|||
</Rectangle> |
|||
<Label Content="化学品审计管理客户端" HorizontalAlignment="Left" Height="35" Margin="55,210,0,0" VerticalAlignment="Top" Width="175" FontSize="16" RenderTransformOrigin="0.5,0.5"/> |
|||
<Label Content="TEL:0575-88202605" HorizontalAlignment="Left" Height="35" Margin="55,245,0,0" VerticalAlignment="Top" Width="175" FontSize="16"/> |
|||
<Label Content="SUNLIGHT © 2022" HorizontalAlignment="Left" Height="35" Margin="65,365,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,30 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
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.Media; |
|||
using System.Windows.Media.Imaging; |
|||
using System.Windows.Shapes; |
|||
|
|||
namespace Audit.Windows |
|||
{ |
|||
/// <summary>
|
|||
/// help.xaml 的交互逻辑
|
|||
/// </summary>
|
|||
public partial class help : Window |
|||
{ |
|||
///<Summary>
|
|||
/// help
|
|||
///</Summary>
|
|||
public help() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue