mirror of
https://gitee.com/chinware/atomui.git
synced 2024-12-02 11:57:42 +08:00
13 lines
284 B
C#
13 lines
284 B
C#
using AtomUI.Demo.Desktop.ViewModels;
|
|
using Avalonia.Controls;
|
|
|
|
namespace AtomUI.Demo.Desktop.ShowCase;
|
|
|
|
public partial class CheckBoxShowCase : UserControl
|
|
{
|
|
public CheckBoxShowCase()
|
|
{
|
|
DataContext = new CheckBoxShowCaseModel();
|
|
InitializeComponent();
|
|
}
|
|
} |