|
| 1 | +<Window x:Class="Revit_glTF_Exporter.ErrorReportWindow" |
| 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:Revit_glTF_Exporter" |
| 7 | + mc:Ignorable="d" |
| 8 | + WindowStartupLocation="CenterScreen" |
| 9 | + Title="Exporting process in progress..." |
| 10 | + Height="335" |
| 11 | + Width="357" |
| 12 | + ResizeMode="NoResize" |
| 13 | + Topmost="True" |
| 14 | + ShowInTaskbar="True" |
| 15 | + Style="{DynamicResource CustomWindowStyle}"> |
| 16 | + |
| 17 | + |
| 18 | + <Border Background="{DynamicResource BackgroundColor}" |
| 19 | + BorderBrush="Transparent" |
| 20 | + BorderThickness="1,1,1,1" |
| 21 | + CornerRadius="8,8,8,8" |
| 22 | + MouseDown="Border_MouseDown" Margin="15,5,13,15"> |
| 23 | + <Border.Effect> |
| 24 | + <DropShadowEffect BlurRadius="20" Color="Gray" Opacity="0.3" ShadowDepth="0" Direction="0"></DropShadowEffect> |
| 25 | + </Border.Effect> |
| 26 | + |
| 27 | + <Grid |
| 28 | + Background="Transparent" Margin="20"> |
| 29 | + |
| 30 | + <Button Style="{DynamicResource MainTitleButtonStyle}" |
| 31 | + Background="Transparent" |
| 32 | + BorderBrush="Transparent" |
| 33 | + Click="Leia_Link" |
| 34 | + HorizontalAlignment="Left" |
| 35 | + VerticalAlignment="Top" |
| 36 | + Margin="0,0,0,0" Height="44" Width="149" > |
| 37 | + </Button> |
| 38 | + |
| 39 | + <Button |
| 40 | + Style="{DynamicResource TabCloseButtonStyle}" |
| 41 | + Name="CloseButton" |
| 42 | + Click="CancelProcess_Click" |
| 43 | + HorizontalAlignment="Right" |
| 44 | + VerticalAlignment="Top"/> |
| 45 | + |
| 46 | + <StackPanel Orientation="Vertical" Margin="0,49,0,0"> |
| 47 | + <Line Stroke="{DynamicResource MainGray}" |
| 48 | + X2="1000" |
| 49 | + Opacity="0.5" |
| 50 | + StrokeThickness="4" |
| 51 | + VerticalAlignment="Top" |
| 52 | + Margin="-9,0,-9,10" RenderTransformOrigin="0.5,0.5" Height="2"> |
| 53 | + <Line.RenderTransform> |
| 54 | + <TransformGroup> |
| 55 | + <ScaleTransform ScaleY="1"/> |
| 56 | + <SkewTransform/> |
| 57 | + <RotateTransform/> |
| 58 | + <TranslateTransform/> |
| 59 | + </TransformGroup> |
| 60 | + </Line.RenderTransform> |
| 61 | + </Line> |
| 62 | + |
| 63 | + <TextBlock TextWrapping="Wrap" |
| 64 | + Text="Email" |
| 65 | + TextAlignment="Left" |
| 66 | + Foreground="{DynamicResource MainGray}" |
| 67 | + HorizontalAlignment="Left" |
| 68 | + Height="18" |
| 69 | + VerticalAlignment="Top" |
| 70 | + RenderTransformOrigin="0.16,0.487"/> |
| 71 | + |
| 72 | + <TextBox x:Name="email_textBox" |
| 73 | + Style="{DynamicResource MainTextBox}" |
| 74 | + TextWrapping="Wrap" |
| 75 | + Width="287" |
| 76 | + HorizontalAlignment="Center" |
| 77 | + Margin="0,5,0,20"/> |
| 78 | + |
| 79 | + <TextBlock TextWrapping="Wrap" |
| 80 | + Text="Error Description" |
| 81 | + TextAlignment="Left" |
| 82 | + Foreground="{DynamicResource MainGray}" |
| 83 | + Height="18" /> |
| 84 | + |
| 85 | + <TextBox x:Name="description_textBox" |
| 86 | + Style="{DynamicResource MainTextBox}" |
| 87 | + TextWrapping="Wrap" |
| 88 | + VerticalAlignment="Top" |
| 89 | + Width="287" |
| 90 | + Height="50" |
| 91 | + Margin="0,5,0,20"/> |
| 92 | + |
| 93 | + </StackPanel> |
| 94 | + |
| 95 | + <Button Content="Report" |
| 96 | + Style="{DynamicResource MainButtonStyle}" |
| 97 | + Width="129" |
| 98 | + Click="Report_Click" |
| 99 | + HorizontalAlignment="Center" |
| 100 | + VerticalAlignment="Bottom"/> |
| 101 | + </Grid> |
| 102 | + </Border> |
| 103 | + |
| 104 | + <Window.Resources> |
| 105 | + <ResourceDictionary> |
| 106 | + <ResourceDictionary.MergedDictionaries> |
| 107 | + <ResourceDictionary Source="Resources.xaml" /> |
| 108 | + </ResourceDictionary.MergedDictionaries> |
| 109 | + </ResourceDictionary> |
| 110 | + </Window.Resources> |
| 111 | + |
| 112 | +</Window> |
0 commit comments