我有一個TextBox控件。當我將IsReadOnly屬性設置爲True時,我爲Background屬性指定的值將被忽略。當IsReadOnly設置爲False時,我使用爲Background屬性指定的值。當IsReadOnly設置爲true時,爲什麼TextBox.Background的值會被忽略?
有沒有人知道爲什麼在將IsReadOnly屬性設置爲True時會忽略Background屬性?
<TextBox x:Name="txt"
Grid.Row="0"
Grid.Column="1"
Margin="10 2"
IsReadOnly="True"
Background="#538DD5"
FontWeight="Bold"
Text="0"
VerticalContentAlignment="Center"
HorizontalContentAlignment="Center" />
您是否有適用於所有'TextBox'控件的樣式? –
不,我沒有應用於TextBox的樣式,只有在另一個Grid中的DataGrid – Richard