2020-04-17 21:45:50 +01:00
|
|
|
|
<!--
|
|
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// Aaru Data Preservation Suite
|
|
|
|
|
|
// ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : ImageConvert.xaml
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// Component : GUI windows.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ‐‐[ Description ] ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
|
|
|
|
|
//
|
|
|
|
|
|
// Image conversion window.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ‐‐[ License ] ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU General public License as
|
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
// GNU General public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU General public License
|
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
|
2024-12-19 10:45:18 +00:00
|
|
|
|
// Copyright © 2011-2025 Natalia Portillo
|
2020-04-17 21:45:50 +01:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
-->
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Window xmlns="https://github.com/avaloniaui"
|
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2020-04-13 04:40:35 +01:00
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
2020-04-16 20:40:25 +01:00
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2024-05-01 04:05:22 +01:00
|
|
|
|
xmlns:windows="clr-namespace:Aaru.Gui.ViewModels.Windows"
|
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
|
d:DesignWidth="800"
|
|
|
|
|
|
d:DesignHeight="450"
|
|
|
|
|
|
x:Class="Aaru.Gui.Views.Windows.ImageConvert"
|
|
|
|
|
|
Icon="/Assets/aaru-logo.png"
|
2020-04-13 04:40:35 +01:00
|
|
|
|
Title="{Binding Title}">
|
|
|
|
|
|
<Design.DataContext>
|
2020-04-16 20:40:25 +01:00
|
|
|
|
<windows:ImageConvertViewModel />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Design.DataContext>
|
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<TextBlock Text="{Binding SourceImageLabel}" />
|
|
|
|
|
|
<TextBox Text="{Binding SourceText}"
|
|
|
|
|
|
IsReadOnly="True" />
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding OutputFormatLabel}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<ComboBox ItemsSource="{Binding PluginsList}"
|
|
|
|
|
|
SelectedItem="{Binding SelectedPlugin}"
|
2020-04-13 04:40:35 +01:00
|
|
|
|
IsEnabled="{Binding FormatReadOnly}">
|
|
|
|
|
|
<ComboBox.ItemTemplate>
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
<TextBlock Text="{Binding Name}" />
|
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
</ComboBox.ItemTemplate>
|
|
|
|
|
|
</ComboBox>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<TextBox Text="{Binding DestinationText}"
|
|
|
|
|
|
IsReadOnly="True" />
|
|
|
|
|
|
<Button Command="{Binding DestinationCommand}"
|
|
|
|
|
|
IsEnabled="{Binding DestinationEnabled}"
|
2020-04-13 04:40:35 +01:00
|
|
|
|
IsVisible="{Binding DestinationVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ChooseLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
|
|
|
|
IsVisible="{Binding OptionsVisible}">
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<NumericUpDown Increment="1"
|
|
|
|
|
|
Minimum="1"
|
|
|
|
|
|
Maximum="16384"
|
|
|
|
|
|
Value="{Binding SectorsValue}" />
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding SectorsLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<CheckBox IsChecked="{Binding ForceChecked}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ForceLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</CheckBox>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding CreatorLabel}" /> <TextBox Text="{Binding CreatorText}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding CreatorCommand}"
|
|
|
|
|
|
IsVisible="{Binding CreatorVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel>
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding MetadataLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<TabControl>
|
|
|
|
|
|
<TabItem>
|
|
|
|
|
|
<TabItem.Header>
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding MediaLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</TabItem.Header>
|
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding TitleLabel}" /> <TextBox Text="{Binding MediaTitleText}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding MediaTitleCommand}"
|
|
|
|
|
|
IsVisible="{Binding MediaTitleVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ManufacturerLabel}" />
|
|
|
|
|
|
<TextBox Text="{Binding MediaManufacturerText}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding MediaManufacturerCommand}"
|
|
|
|
|
|
IsVisible="{Binding MediaManufacturerVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ModelLabel}" /> <TextBox Text="{Binding MediaModelText}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding MediaModelCommand}"
|
|
|
|
|
|
IsVisible="{Binding MediaModelVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding SerialNumberLabel}" />
|
|
|
|
|
|
<TextBox Text="{Binding MediaSerialNumberText}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding MediaSerialNumberCommand}"
|
|
|
|
|
|
IsVisible="{Binding MediaSerialNumberVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding BarcodeLabel}" />
|
|
|
|
|
|
<TextBox Text="{Binding MediaBarcodeText}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding MediaBarcodeCommand}"
|
|
|
|
|
|
IsVisible="{Binding MediaBarcodeVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding PartNumberLabel}" />
|
|
|
|
|
|
<TextBox Text="{Binding MediaPartNumberText}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding MediaPartNumberCommand}"
|
|
|
|
|
|
IsVisible="{Binding MediaPartNumberVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding NumberInSequenceLabel}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<NumericUpDown Increment="1"
|
|
|
|
|
|
Value="{Binding MediaSequenceValue}"
|
|
|
|
|
|
Minimum="0" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding MediaSequenceCommand}"
|
|
|
|
|
|
IsVisible="{Binding MediaSequenceVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding LastMediaOfTheSequenceLabel}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<NumericUpDown Increment="1"
|
|
|
|
|
|
Value="{Binding LastMediaSequenceValue}"
|
|
|
|
|
|
Minimum="0" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding LastMediaSequenceCommand}"
|
|
|
|
|
|
IsVisible="{Binding LastMediaSequenceVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</TabItem>
|
|
|
|
|
|
<TabItem>
|
|
|
|
|
|
<TabItem.Header>
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding DriveLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</TabItem.Header>
|
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ManufacturerLabel}" />
|
|
|
|
|
|
<TextBox Text="{Binding DriveManufacturerText}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding DriveManufacturerCommand}"
|
|
|
|
|
|
IsVisible="{Binding DriveManufacturerVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ModelLabel}" /> <TextBox Text="{Binding DriveModelText}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding DriveModelCommand}"
|
|
|
|
|
|
IsVisible="{Binding DriveModelVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding SerialNumberLabel}" />
|
|
|
|
|
|
<TextBox Text="{Binding DriveSerialNumberText}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding DriveSerialNumberCommand}"
|
|
|
|
|
|
IsVisible="{Binding DriveSerialNumberVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding FirmwareRevisionLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<TextBox Text="{Binding DriveFirmwareRevisionText}" />
|
|
|
|
|
|
<Button Command="{Binding DriveFirmwareRevisionCommand}"
|
|
|
|
|
|
IsVisible="{Binding DriveFirmwareRevisionVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</TabItem>
|
|
|
|
|
|
<TabItem>
|
|
|
|
|
|
<TabItem.Header>
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding CommentsLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</TabItem.Header>
|
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
|
|
<TextBox Text="{Binding CommentsText}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding CommentsCommand}"
|
|
|
|
|
|
IsVisible="{Binding CommentsVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding GetFromSourceImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</TabItem>
|
|
|
|
|
|
</TabControl>
|
2022-12-16 03:05:50 +00:00
|
|
|
|
<TextBlock Text="{Binding AaruMetadataLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<TextBox Text="{Binding MetadataJsonText}"
|
|
|
|
|
|
IsReadOnly="True" />
|
2022-12-15 22:21:07 +00:00
|
|
|
|
<Button Command="{Binding AaruMetadataFromImageCommand}"
|
|
|
|
|
|
IsVisible="{Binding AaruMetadataFromImageVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding FromImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
2022-12-16 03:05:50 +00:00
|
|
|
|
<Button Command="{Binding AaruMetadataCommand}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ChooseLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ResumeFileLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<TextBox Text="{Binding ResumeFileText}"
|
|
|
|
|
|
IsReadOnly="True" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<Button Command="{Binding ResumeFileFromImageCommand}"
|
|
|
|
|
|
IsVisible="{Binding ResumeFileFromImageVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding FromImageLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
<Button Command="{Binding ResumeFileCommand}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding ChooseLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</StackPanel>
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
|
|
|
|
IsVisible="{Binding ProgressVisible}">
|
|
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
|
|
|
|
IsVisible="{Binding Progress1Visible}">
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<TextBox Text="{Binding ProgressText}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<ProgressBar Value="{Binding ProgressValue}"
|
|
|
|
|
|
Maximum="{Binding ProgressMaxValue}"
|
2020-04-13 04:40:35 +01:00
|
|
|
|
IsIndeterminate="{Binding ProgressIndeterminate}" />
|
|
|
|
|
|
</StackPanel>
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
|
|
|
|
IsVisible="{Binding Progress2Visible}">
|
2020-04-13 04:40:35 +01:00
|
|
|
|
<TextBox Text="{Binding Progress2Text}" />
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<ProgressBar Value="{Binding Progress2Value}"
|
|
|
|
|
|
Maximum="{Binding Progress2MaxValue}"
|
2020-04-13 04:40:35 +01:00
|
|
|
|
IsIndeterminate="{Binding Progress2Indeterminate}" />
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding StartCommand}"
|
|
|
|
|
|
IsVisible="{Binding StartVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding StartLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding CloseCommand}"
|
|
|
|
|
|
IsVisible="{Binding CloseVisible}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding CloseLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
2024-05-01 04:05:22 +01:00
|
|
|
|
<Button Command="{Binding StopCommand}"
|
|
|
|
|
|
IsVisible="{Binding StopVisible}"
|
|
|
|
|
|
IsEnabled="{Binding StopEnabled}">
|
2022-11-16 21:40:54 +00:00
|
|
|
|
<TextBlock Text="{Binding StopLabel}" />
|
2020-04-13 04:40:35 +01:00
|
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
</Window>
|