mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
61 lines
3.1 KiB
XML
61 lines
3.1 KiB
XML
<UserControl x:Class="SourceGit.Views.Widgets.Exceptions"
|
|
x:Name="me"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:controls="clr-namespace:SourceGit.Views.Controls"
|
|
mc:Ignorable="d"
|
|
Width="Auto" Height="Auto">
|
|
<ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
|
|
<ItemsControl ItemsSource="{Binding ElementName=me, Path=Messages}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid Height="Auto" Width="300" Margin="8">
|
|
<Border Background="{DynamicResource Brush.Window}" BorderBrush="{DynamicResource Brush.Border0}" BorderThickness="1">
|
|
<Border.Effect>
|
|
<DropShadowEffect ShadowDepth="0" Opacity=".5"/>
|
|
</Border.Effect>
|
|
</Border>
|
|
|
|
<Grid Margin="8">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="26"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
Text="{DynamicResource Text.Launcher.Error}"
|
|
FontFamily="Microsoft YaHei UI"
|
|
FontWeight="Bold"/>
|
|
<controls:TextEdit
|
|
Grid.Row="1"
|
|
Text="{Binding Path=., Mode=OneWay}"
|
|
IsReadOnly="true"
|
|
BorderThickness="0"
|
|
TextWrapping="Wrap"
|
|
VerticalScrollBarVisibility="Auto"
|
|
MaxHeight="80"
|
|
Margin="0,8"
|
|
FontFamily="Microsoft YaHei UI"
|
|
VerticalAlignment="Top"/>
|
|
<Button
|
|
Grid.Row="2"
|
|
Height="25"
|
|
Margin="4,0" Padding="8,0"
|
|
Click="Dismiss"
|
|
FontFamily="Microsoft YaHei UI"
|
|
Content="{DynamicResource Text.Close}"
|
|
Background="{DynamicResource Brush.Accent1}"
|
|
BorderBrush="{DynamicResource Brush.FG1}"
|
|
BorderThickness="1"
|
|
HorizontalAlignment="Right"/>
|
|
</Grid>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
</UserControl>
|