18 lines
396 B
C#
18 lines
396 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Ursa.Controls;
|
|
|
|
namespace Sandbox.Views;
|
|
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private async void Button_OnClick(object? sender, RoutedEventArgs e)
|
|
{
|
|
var res = await OverlayDialog.ShowModal(new TextBlock() { Text = "sdfksjdl" }, "root");
|
|
}
|
|
} |