mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 01:06:30 +00:00
add autodetection
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<Window x:Class="Azaion.Annotator.AutodetectDialog"
|
||||
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"
|
||||
mc:Ignorable="d"
|
||||
WindowStyle="SingleBorderWindow"
|
||||
ResizeMode="NoResize"
|
||||
Title="AutodetectDialog"
|
||||
Height="250" Width="420"
|
||||
Background="LightGray">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="40"></RowDefinition>
|
||||
<RowDefinition Height="*"></RowDefinition>
|
||||
<RowDefinition Height="70"></RowDefinition>
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock Grid.Row="0"
|
||||
FontSize="18" TextAlignment="Center" Padding="0 10 0 0">Йде розпізнавання...</TextBlock>
|
||||
<ScrollViewer Grid.Row="1">
|
||||
<TextBlock
|
||||
Name="TextBlockLog"
|
||||
Padding="10 10 5 5"/>
|
||||
</ScrollViewer>
|
||||
<Button Grid.Row="2"
|
||||
Width="50" Height="50" ToolTip="Видалити всі аннотації. Клавіша: [X]"
|
||||
Background="LightGray" BorderBrush="LightGray"
|
||||
Click="ButtonBase_OnClick">
|
||||
<Path Stretch="Fill" Fill="Gray" Data="M12,2 C17.5228,2 22,6.47715 22,12 C22,17.5228 17.5228,22 12,22 C6.47715,22 2,17.5228 2,12 C2,6.47715 6.47715,2 12,2 Z
|
||||
M9.87874,8.46443 C9.48821,8.07391 8.85505,8.07391 8.46452,8.46443 C8.10404,8.82491923 8.07631077,9.39214645 8.38133231,9.78443366 L8.46452,9.87864 L10.5858,11.9999
|
||||
L8.46443,14.1213 C8.07391,14.5118 8.07391,15.145 8.46443,15.5355 C8.82491923,15.8959615 9.39214645,15.9236893 9.78443366,15.6186834 L9.87864,15.5355 L12,13.4141
|
||||
L14.1214,15.5355 C14.5119,15.926 15.1451,15.926 15.5356,15.5355 C15.8960615,15.1750385 15.9237893,14.6077793 15.6187834,14.2155027 L15.5356,14.1213 L13.4142,11.9999
|
||||
L15.5355,9.87862 C15.926,9.4881 15.926,8.85493 15.5355,8.46441 C15.1750385,8.10392077 14.6077793,8.07619083 14.2155027,8.38122018 L14.1213,8.46441
|
||||
L12,10.5857 L9.87874,8.46443Z" />
|
||||
</Button>
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user