Corrected field readonlyness.

This commit is contained in:
2017-05-16 03:30:32 +01:00
parent efdef186ae
commit bd440031db
3 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@
<StackLayout Orientation="Horizontal">
<Label>Image:</Label>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtImage" />
<TextBox ID="txtImage" ReadOnly="True"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
@@ -21,11 +21,11 @@
</StackLayoutItem>
<Label>Offset:</Label>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtOffset" />
<TextBox ID="txtOffset" ReadOnly="True"/>
</StackLayoutItem>
<Label>Size:</Label>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtSize" />
<TextBox ID="txtSize" ReadOnly="True"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
@@ -287,7 +287,7 @@
<CheckBox ID="chkPCMCIA">Is PCMCIA?</CheckBox>
<CheckBox ID="chkCIS" Enabled="False" Visible="False">Has CIS?</CheckBox>
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
<GridView ID="treeCIS" Visible="False"/>
<GridView ID="treeCIS" Visible="False" Enabled="False"/>
</StackLayoutItem>
<StackLayoutItem HorizontalAlignment="Stretch">
<StackLayout Orientation="Horizontal">

View File

@@ -37,7 +37,7 @@
<StackLayout Orientation="Horizontal">
<CheckBox ID="chkCreationDate" ThreeState="False" CheckedChanged="OnChkCreationDateToggled">Creation date</CheckBox>
<StackLayoutItem Expand="True">
<DateTimePicker ID="cldCreationDate" Mode="DateTime" />
<DateTimePicker ID="cldCreationDate" Mode="DateTime" Enabled="False"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
@@ -45,7 +45,7 @@
<StackLayout Orientation="Horizontal">
<CheckBox ID="chkModificationDate" ThreeState="False" CheckedChanged="OnChkModificationDateToggled">Modification date</CheckBox>
<StackLayoutItem Expand="True">
<DateTimePicker ID="cldModificationDate" Mode="DateTime" />
<DateTimePicker ID="cldModificationDate" Mode="DateTime" Enabled="False"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
@@ -53,7 +53,7 @@
<StackLayout Orientation="Horizontal">
<CheckBox ID="chkEffectiveDate" ThreeState="False" CheckedChanged="OnChkEffectiveDateToggled">Effective date</CheckBox>
<StackLayoutItem Expand="True">
<DateTimePicker ID="cldEffectiveDate" Mode="DateTime" />
<DateTimePicker ID="cldEffectiveDate" Mode="DateTime" Enabled="False"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
@@ -61,7 +61,7 @@
<StackLayout Orientation="Horizontal">
<CheckBox ID="chkExpirationDate" ThreeState="False" CheckedChanged="OnChkExpirationDateToggled">Expiration date</CheckBox>
<StackLayoutItem Expand="True">
<DateTimePicker ID="cldExpirationDate" Mode="DateTime" />
<DateTimePicker ID="cldExpirationDate" Mode="DateTime" Enabled="False"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
@@ -69,7 +69,7 @@
<StackLayout Orientation="Horizontal">
<CheckBox ID="chkBackupDate" ThreeState="False" CheckedChanged="OnChkBackupDateToggled">Last backup date</CheckBox>
<StackLayoutItem Expand="True">
<DateTimePicker ID="cldBackupDate" Mode="DateTime" />
<DateTimePicker ID="cldBackupDate" Mode="DateTime" Enabled="False"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>

View File

@@ -9,7 +9,7 @@
<StackLayout Orientation="Horizontal">
<Label>Image:</Label>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtImage" />
<TextBox ID="txtImage" ReadOnly="True"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
@@ -21,11 +21,11 @@
</StackLayoutItem>
<Label>Offset:</Label>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtOffset" />
<TextBox ID="txtOffset" ReadOnly="True"/>
</StackLayoutItem>
<Label>Size:</Label>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtSize" />
<TextBox ID="txtSize" ReadOnly="True"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>