Workspace.xaml 1.7 KB

1234567891011121314151617181920212223242526272829
  1. <Page x:Class="WechatPCMsgBakTool.Pages.Workspace"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:WechatPCMsgBakTool.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Workspace" Background="White">
  10. <Grid>
  11. <Label FontSize="20" Margin="30,15" Content="工作台" HorizontalAlignment="Left" VerticalAlignment="Top" />
  12. <Label Name="lab_status" Margin="30,45,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Content="当前工作区还未解密,请先解密。"></Label>
  13. <Button Name="btn_decrypt" Margin="35,80,0,0" Width="60" Height="30" Content="解密" Foreground="White" Background="#2775b6" BorderThickness="0" HorizontalAlignment="Left" VerticalAlignment="Top" Click="btn_decrypt_Click">
  14. <Button.Resources>
  15. <Style TargetType="{x:Type Border}">
  16. <Setter Property="CornerRadius" Value="3" />
  17. </Style>
  18. </Button.Resources>
  19. </Button>
  20. <Button Name="btn_read" Margin="125,80,0,0" Width="60" Height="30" Content="读取" IsEnabled="False" Foreground="White" Background="#2775b6" BorderThickness="0" HorizontalAlignment="Left" VerticalAlignment="Top" Click="btn_read_Click">
  21. <Button.Resources>
  22. <Style TargetType="{x:Type Border}">
  23. <Setter Property="CornerRadius" Value="3" />
  24. </Style>
  25. </Button.Resources>
  26. </Button>
  27. </Grid>
  28. </Page>