mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-05-01 21:41:27 +08:00
feat: add tooltip. arrow is not supported as there is not indicator of placement on tooltip control itself.
This commit is contained in:
18
demo/Semi.Avalonia.Demo/Pages/ToolTipDemo.axaml.cs
Normal file
18
demo/Semi.Avalonia.Demo/Pages/ToolTipDemo.axaml.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace Semi.Avalonia.Demo.Pages;
|
||||
|
||||
public partial class ToolTipDemo : UserControl
|
||||
{
|
||||
public ToolTipDemo()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void InitializeComponent()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user