misc: update demo tab order.

This commit is contained in:
rabbitism
2023-01-04 18:08:33 +08:00
parent c23c180347
commit 3d337032d4
3 changed files with 26 additions and 21 deletions

View File

@@ -1,8 +1,12 @@
<UserControl
x:Class="Semi.Avalonia.Demo.Pages.ListBoxItem" 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" d:DesignHeight="450"
d:DesignWidth="800" mc:Ignorable="d">
x:Class="Semi.Avalonia.Demo.Pages.ListBoxDemo"
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"
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d">
<ListBox Margin="20">
<ListBoxItem>Item 1</ListBoxItem>
<ListBoxItem>Item 2</ListBoxItem>

View File

@@ -4,9 +4,9 @@ using Avalonia.Markup.Xaml;
namespace Semi.Avalonia.Demo.Pages;
public partial class ListBoxItem : UserControl
public partial class ListBoxDemo : UserControl
{
public ListBoxItem()
public ListBoxDemo()
{
InitializeComponent();
}