mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-03-03 00:00:55 +08:00
13 lines
276 B
C#
13 lines
276 B
C#
using Avalonia.Controls;
|
|
using Semi.Avalonia.Demo.ViewModels;
|
|
|
|
namespace Semi.Avalonia.Demo.Pages;
|
|
|
|
public partial class ComboBoxDemo : UserControl
|
|
{
|
|
public ComboBoxDemo()
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = new ComboBoxDemoViewModel();
|
|
}
|
|
} |