|
6 | 6 | x:Class="SampleApp.DemoPages.TextBoxDemo">
|
7 | 7 |
|
8 | 8 | <UserControl.Styles>
|
9 |
| - <Style Selector="TextBlock"> |
| 9 | + <Style Selector="TextBlock.Label"> |
10 | 10 | <Setter Property="Margin" Value="3 0 0 0" />
|
11 | 11 | </Style>
|
12 | 12 | </UserControl.Styles>
|
|
18 | 18 | CornerRadius="{DynamicResource LayoutCornerRadius}"
|
19 | 19 | Background="{DynamicResource LayoutBackgroundLowBrush}">
|
20 | 20 | <StackPanel Margin="20" Width="300" Spacing="10" HorizontalAlignment="Left">
|
21 |
| - <TextBlock>Name:</TextBlock> |
| 21 | + <TextBlock Classes="Label">Name:</TextBlock> |
22 | 22 | <TextBox Watermark="Enter your name" />
|
23 |
| - <TextBlock>Password:</TextBlock> |
| 23 | + <TextBlock Classes="Label">Password:</TextBlock> |
24 | 24 | <TextBox PasswordChar="*" Watermark="Enter your password" />
|
25 |
| - <TextBlock>Notes:</TextBlock> |
| 25 | + <TextBlock Classes="Label">Notes:</TextBlock> |
26 | 26 | <TextBox Height="100" AcceptsReturn="True" TextWrapping="Wrap" />
|
27 | 27 | <TextBox InnerLeftContent="http://" />
|
28 | 28 | <TextBox InnerRightContent=".com" />
|
|
33 | 33 | <TextBox Watermark="Disabled" IsEnabled="False" />
|
34 | 34 | <TextBox PasswordChar="*" Classes="revealPasswordButton">Reveal Password</TextBox>
|
35 | 35 | <TextBox PasswordChar="*" Classes="revealPasswordButton" RevealPassword="True">Password Revealed</TextBox>
|
36 |
| - <TextBlock>Custom Height:</TextBlock> |
| 36 | + <TextBlock Classes="Label">Custom Height:</TextBlock> |
37 | 37 | <StackPanel Orientation="Horizontal">
|
38 | 38 | <TextBox Watermark="Type here" Height="30" Width="250" VerticalContentAlignment="Center" />
|
39 | 39 | <Button Content="..." Height="30" Width="30" />
|
|
0 commit comments