Fix issue with bold not being applied
This commit is contained in:
Родитель
c303e4f309
Коммит
343e21be7e
|
@ -35,10 +35,10 @@ namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages
|
|||
IsValidDecimalResult.FontWeight = InputTextBox.Text.IsDecimal() ? FontWeights.Bold : FontWeights.Normal;
|
||||
|
||||
IsValidStringResult.Text = InputTextBox.Text.IsCharacterString().ToString();
|
||||
IsValidPhoneNumberResult.FontWeight = InputTextBox.Text.IsCharacterString() ? FontWeights.Bold : FontWeights.Normal;
|
||||
IsValidStringResult.FontWeight = InputTextBox.Text.IsCharacterString() ? FontWeights.Bold : FontWeights.Normal;
|
||||
|
||||
IsValidPhoneNumberResult.Text = InputTextBox.Text.IsPhoneNumber().ToString();
|
||||
IsValidPhoneNumberResult.FontWeight = InputTextBox.Text.IsPhoneNumber() ? FontWeights.Bold : FontWeights.Normal;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче