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