1 Star 0 Fork 13

evlon/fnsync

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
WindowUnhandledException.xaml 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
holmium 提交于 2020-11-08 09:32 . Adds file management
<Window x:Class="FnSync.WindowUnhandledException"
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:FnSync"
mc:Ignorable="d"
Background="{DynamicResource {x:Static SystemColors.MenuBarBrushKey}}"
WindowStartupLocation="CenterScreen" Icon="Resources/icon.ico"
Title="{DynamicResource ErrorEncountered}" Height="450" Width="400">
<Grid Margin="8">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBox Grid.Row="0" Text="{DynamicResource ErrorLabel}" Background="Transparent" IsReadOnly="True" TextWrapping="Wrap" VerticalScrollBarVisibility="Hidden" HorizontalScrollBarVisibility="Hidden" Margin="0,4" BorderThickness="0"/>
<TextBox x:Name="Message" Grid.Row="1" IsReadOnly="True" IsReadOnlyCaretVisible="True" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto"/>
<StackPanel Grid.Row="2" Margin="0,8,0,0" Orientation="Horizontal" HorizontalAlignment="Center">
<Button x:Name="QuitThis" Content="{DynamicResource Quit}" Padding="8,4" Click="QuitThis_Click"/>
<Button x:Name="IgnoreThis" Content="{DynamicResource Ignore}" Margin="8,0,0,0" Padding="8,4" Click="IgnoreThis_Click"/>
</StackPanel>
</Grid>
</Window>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/evlon/fnsync.git
git@gitee.com:evlon/fnsync.git
evlon
fnsync
fnsync
master

搜索帮助