-
Notifications
You must be signed in to change notification settings - Fork 821
Expand file tree
/
Copy pathOperationOutputWindow.axaml
More file actions
30 lines (28 loc) · 1.37 KB
/
OperationOutputWindow.axaml
File metadata and controls
30 lines (28 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:automation="clr-namespace:Avalonia.Automation;assembly=Avalonia.Controls"
xmlns:vm="using:UniGetUI.Avalonia.ViewModels.DialogPages"
x:Class="UniGetUI.Avalonia.Views.DialogPages.OperationOutputWindow"
x:DataType="vm:OperationOutputViewModel"
Width="700" MinWidth="400"
Height="500" MinHeight="300"
CanResize="True"
ShowInTaskbar="False"
Background="{DynamicResource AppDialogBackground}"
WindowStartupLocation="CenterOwner"
Title="{Binding Title}">
<ScrollViewer x:Name="OutputScroll"
Margin="8"
HorizontalScrollBarVisibility="Auto"
VerticalScrollBarVisibility="Auto"
Background="{DynamicResource AppDialogDarkBackground}"
CornerRadius="6">
<SelectableTextBlock x:Name="OutputText"
Padding="8"
FontFamily="Cascadia Mono,Consolas,Menlo,monospace"
FontSize="12"
TextWrapping="Wrap"
automation:AutomationProperties.Name="{Binding Title}"
automation:AutomationProperties.AccessibilityView="Raw"/>
</ScrollViewer>
</Window>