mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
General refactor and cleanup.
This commit is contained in:
@@ -31,38 +31,58 @@
|
||||
// Copyright © 2011‐2023 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
-->
|
||||
<UserControl xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
<UserControl xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:panels="clr-namespace:Aaru.Gui.ViewModels.Panels" mc:Ignorable="d" d:DesignWidth="800"
|
||||
d:DesignHeight="450" x:Class="Aaru.Gui.Views.Panels.FileSystem">
|
||||
xmlns:panels="clr-namespace:Aaru.Gui.ViewModels.Panels"
|
||||
mc:Ignorable="d"
|
||||
d:DesignWidth="800"
|
||||
d:DesignHeight="450"
|
||||
x:Class="Aaru.Gui.Views.Panels.FileSystem">
|
||||
<Design.DataContext>
|
||||
<panels:FileSystemViewModel />
|
||||
</Design.DataContext>
|
||||
<StackPanel>
|
||||
<TextBlock Text="{Binding TypeText}" />
|
||||
<TextBlock Text="{Binding VolumeNameText}" IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding SerialNumberText}" IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding ApplicationIdentifierText}" IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding SystemIdentifierText}" IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding VolumeSetIdentifierText}" IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding DataPreparerIdentifierText}" IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding PublisherIdentifierText}" IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding CreationDateText}" IsVisible="{Binding CreationDateVisible}" />
|
||||
<TextBlock Text="{Binding EffectiveDateText}" IsVisible="{Binding EffectiveDateVisible}" />
|
||||
<TextBlock Text="{Binding ModificationDateText}" IsVisible="{Binding ModificationDateVisible}" />
|
||||
<TextBlock Text="{Binding ExpirationDateText}" IsVisible="{Binding ExpirationDateVisible}" />
|
||||
<TextBlock Text="{Binding BackupDateText}" IsVisible="{Binding BackupDateVisible}" />
|
||||
<TextBlock Text="{Binding VolumeNameText}"
|
||||
IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding SerialNumberText}"
|
||||
IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding ApplicationIdentifierText}"
|
||||
IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding SystemIdentifierText}"
|
||||
IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding VolumeSetIdentifierText}"
|
||||
IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding DataPreparerIdentifierText}"
|
||||
IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding PublisherIdentifierText}"
|
||||
IsVisible="{Binding !!VolumeNameText}" />
|
||||
<TextBlock Text="{Binding CreationDateText}"
|
||||
IsVisible="{Binding CreationDateVisible}" />
|
||||
<TextBlock Text="{Binding EffectiveDateText}"
|
||||
IsVisible="{Binding EffectiveDateVisible}" />
|
||||
<TextBlock Text="{Binding ModificationDateText}"
|
||||
IsVisible="{Binding ModificationDateVisible}" />
|
||||
<TextBlock Text="{Binding ExpirationDateText}"
|
||||
IsVisible="{Binding ExpirationDateVisible}" />
|
||||
<TextBlock Text="{Binding BackupDateText}"
|
||||
IsVisible="{Binding BackupDateVisible}" />
|
||||
<TextBlock Text="{Binding ClustersText}" />
|
||||
<TextBlock Text="{Binding FreeClustersText}" IsVisible="{Binding FreeClustersVisible}" />
|
||||
<TextBlock Text="{Binding FilesText}" IsVisible="{Binding FilesVisible}" />
|
||||
<TextBlock Text="{Binding FreeClustersText}"
|
||||
IsVisible="{Binding FreeClustersVisible}" />
|
||||
<TextBlock Text="{Binding FilesText}"
|
||||
IsVisible="{Binding FilesVisible}" />
|
||||
<CheckBox IsEnabled="{Binding BootableChecked}">
|
||||
<TextBlock Text="{Binding BootableLabel}" />
|
||||
</CheckBox>
|
||||
<CheckBox IsEnabled="{Binding DirtyChecked}">
|
||||
<TextBlock Text="{Binding DirtyLabel}" />
|
||||
</CheckBox>
|
||||
<TextBlock Text="{Binding DetailsLabel}" IsVisible="{Binding !!InformationText}" />
|
||||
<TextBox Text="{Binding InformationText}" IsReadOnly="True" />
|
||||
<TextBlock Text="{Binding DetailsLabel}"
|
||||
IsVisible="{Binding !!InformationText}" />
|
||||
<TextBox Text="{Binding InformationText}"
|
||||
IsReadOnly="True" />
|
||||
</StackPanel>
|
||||
</UserControl>
|
||||
Reference in New Issue
Block a user