2022-12-16 03:31:28 +08:00
|
|
|
<UserControl
|
2023-02-15 15:48:14 +08:00
|
|
|
x:Class="Semi.Avalonia.Demo.Pages.TextBoxDemo"
|
|
|
|
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"
|
2023-05-05 02:21:33 +08:00
|
|
|
xmlns:system="clr-namespace:System;assembly=netstandard"
|
2024-03-24 21:56:46 +08:00
|
|
|
d:DesignHeight="800"
|
2023-02-15 15:48:14 +08:00
|
|
|
d:DesignWidth="800"
|
|
|
|
mc:Ignorable="d">
|
2022-12-16 03:31:28 +08:00
|
|
|
<ScrollViewer>
|
|
|
|
<StackPanel HorizontalAlignment="Left" Spacing="20">
|
|
|
|
<TextBox Width="300" />
|
2023-02-15 15:48:14 +08:00
|
|
|
<TextBox Width="300" Classes="Large" />
|
|
|
|
<TextBox Width="300" Classes="Small" />
|
2022-12-16 03:31:28 +08:00
|
|
|
<TextBox Width="300" Watermark="Please use this" />
|
|
|
|
<TextBox Width="300" InnerLeftContent="http://" />
|
|
|
|
<TextBox Width="300" InnerRightContent=".com" />
|
|
|
|
<TextBox
|
2023-02-15 15:48:14 +08:00
|
|
|
Width="500"
|
|
|
|
InnerLeftContent="http://"
|
2022-12-16 03:31:28 +08:00
|
|
|
InnerRightContent=".com" />
|
|
|
|
<TextBox Width="300" Classes="clearButton" />
|
|
|
|
<TextBox Width="300" PasswordChar="*" />
|
|
|
|
<TextBox
|
2023-02-15 15:48:14 +08:00
|
|
|
Width="300"
|
|
|
|
Classes="revealPasswordButton"
|
2022-12-16 03:31:28 +08:00
|
|
|
PasswordChar="*" />
|
2022-12-16 12:31:52 +08:00
|
|
|
<TextBox
|
2023-02-15 15:48:14 +08:00
|
|
|
Width="500"
|
|
|
|
InnerLeftContent="http://"
|
2022-12-16 12:31:52 +08:00
|
|
|
InnerRightContent=".com"
|
2023-02-15 15:48:14 +08:00
|
|
|
IsEnabled="False" />
|
|
|
|
<TextBox
|
|
|
|
Width="500"
|
|
|
|
Classes="Bordered"
|
|
|
|
InnerLeftContent="http://"
|
|
|
|
InnerRightContent=".com" />
|
|
|
|
<TextBox
|
|
|
|
Width="500"
|
|
|
|
Classes="Bordered"
|
|
|
|
InnerLeftContent="http://"
|
|
|
|
InnerRightContent=".com"
|
|
|
|
IsEnabled="False" />
|
2024-03-24 21:56:46 +08:00
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<TextBox
|
|
|
|
Width="150"
|
|
|
|
Classes="Large"
|
|
|
|
Watermark="Large" />
|
|
|
|
<TextBox
|
|
|
|
Width="150"
|
|
|
|
Watermark="Default" />
|
|
|
|
<TextBox
|
|
|
|
Width="150"
|
|
|
|
Classes="Small"
|
|
|
|
Watermark="Small" />
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<TextBox
|
|
|
|
Width="150"
|
|
|
|
IsEnabled="False"
|
|
|
|
Watermark="Disabled" />
|
|
|
|
<TextBox
|
|
|
|
Width="150"
|
|
|
|
Classes="Bordered"
|
|
|
|
Watermark="Bordered" />
|
|
|
|
<TextBox
|
|
|
|
Width="150"
|
|
|
|
Classes="Bordered"
|
|
|
|
IsEnabled="False" />
|
|
|
|
</StackPanel>
|
2024-03-25 17:27:38 +08:00
|
|
|
<TextBox Width="300" Classes="TextArea" />
|
2022-12-16 03:31:28 +08:00
|
|
|
</StackPanel>
|
|
|
|
</ScrollViewer>
|
|
|
|
</UserControl>
|