mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-03-14 21:46:37 +08:00
22 lines
614 B
C#
22 lines
614 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Controls.Primitives;
|
|
using Avalonia.Threading;
|
|
using Semi.Avalonia.Demo.ViewModels;
|
|
|
|
namespace Semi.Avalonia.Demo.Pages;
|
|
|
|
public partial class VariablesDemo : UserControl
|
|
{
|
|
public VariablesDemo()
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = new VariablesDemoViewModel();
|
|
}
|
|
|
|
protected override async void OnApplyTemplate(TemplateAppliedEventArgs e)
|
|
{
|
|
base.OnApplyTemplate(e);
|
|
var vm = this.DataContext as VariablesDemoViewModel;
|
|
await Dispatcher.UIThread.InvokeAsync(() => { vm?.InitializeResources(); });
|
|
}
|
|
} |