2024-06-19 18:46:29 +08:00
|
|
|
<UserControl
|
|
|
|
x:Class="AtomUI.Demo.Desktop.ShowCase.LineEditShowCase"
|
|
|
|
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"
|
|
|
|
xmlns:atom="https://atomui.net"
|
|
|
|
xmlns:showcase="clr-namespace:AtomUI.Demo.Desktop.ShowCase"
|
|
|
|
mc:Ignorable="d">
|
|
|
|
<showcase:ShowCasePanel>
|
2024-08-06 14:29:46 +08:00
|
|
|
<showcase:ShowCaseItem
|
|
|
|
Title="Basic usage"
|
|
|
|
Description="Basic usage example.">
|
|
|
|
<atom:LineEdit Watermark="Basic usage"/>
|
|
|
|
</showcase:ShowCaseItem>
|
|
|
|
|
2024-08-06 15:28:17 +08:00
|
|
|
<showcase:ShowCaseItem
|
|
|
|
Title="Three sizes of Input"
|
|
|
|
Description="There are three sizes of an Input box: large (40px), default (32px) and small (24px).">
|
|
|
|
<StackPanel Orientation="Vertical" Spacing="10">
|
2024-08-07 11:28:11 +08:00
|
|
|
<atom:LineEdit Watermark="Large" SizeType="Large" InnerLeftContent="{atom:IconProvider Kind=UserOutlined, Width=16, Height=16}"/>
|
|
|
|
<atom:LineEdit Watermark="Middle" SizeType="Middle" InnerLeftContent="{atom:IconProvider Kind=UserOutlined, Width=14, Height=14}"/>
|
|
|
|
<atom:LineEdit Watermark="Small" SizeType="Small" InnerLeftContent="{atom:IconProvider Kind=UserOutlined, Width=12, Height=12}"/>
|
2024-08-06 15:28:17 +08:00
|
|
|
</StackPanel>
|
|
|
|
</showcase:ShowCaseItem>
|
|
|
|
|
|
|
|
<showcase:ShowCaseItem
|
|
|
|
Title="Variants"
|
|
|
|
Description="Variants of Input.">
|
|
|
|
<StackPanel Orientation="Vertical" Spacing="10">
|
|
|
|
<atom:LineEdit Watermark="Outlined" StyleVariant="Outline"/>
|
|
|
|
<atom:LineEdit Watermark="Filled" StyleVariant="Filled"/>
|
|
|
|
<atom:LineEdit Watermark="Borderless" StyleVariant="Borderless"/>
|
|
|
|
</StackPanel>
|
|
|
|
</showcase:ShowCaseItem>
|
|
|
|
|
2024-08-06 20:15:17 +08:00
|
|
|
<showcase:ShowCaseItem
|
|
|
|
Title="Pre / Post tab"
|
|
|
|
Description="Using pre and post tabs example.">
|
|
|
|
<StackPanel Orientation="Vertical" Spacing="10">
|
2024-08-07 08:14:07 +08:00
|
|
|
<atom:LineEdit LeftAddOn="http://" RightAddOn=".com" Width="400" HorizontalAlignment="Left"
|
|
|
|
Text="mysite"/>
|
|
|
|
<atom:LineEdit RightAddOn="{atom:IconProvider Kind=SettingOutlined, Width=16, Height=16}" Width="400" HorizontalAlignment="Left"
|
|
|
|
Text="mysite"/>
|
|
|
|
<atom:LineEdit LeftAddOn="http://" InnerRightContent=".com" Width="400" HorizontalAlignment="Left"
|
|
|
|
Text="mysite"/>
|
2024-08-06 20:15:17 +08:00
|
|
|
</StackPanel>
|
|
|
|
</showcase:ShowCaseItem>
|
|
|
|
|
2024-06-19 18:46:29 +08:00
|
|
|
</showcase:ShowCasePanel>
|
|
|
|
</UserControl>
|