csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.8 KiB
60 lines
1.8 KiB
using Avalonia.Controls;
|
|
using Avalonia.Input;
|
|
using Avalonia.Interactivity;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Markup.Xaml.UnitTests.Xaml
|
|
{
|
|
public class EventTests : XamlTestBase
|
|
{
|
|
[Fact]
|
|
public void Event_Is_Assigned()
|
|
{
|
|
var xaml = @"<Button xmlns='https://github.com/avaloniaui' Click='OnClick'/>";
|
|
var target = new MyButton();
|
|
|
|
AvaloniaRuntimeXamlLoader.Load(xaml, rootInstance: target);
|
|
|
|
target.RaiseEvent(new RoutedEventArgs
|
|
{
|
|
RoutedEvent = Button.ClickEvent,
|
|
});
|
|
|
|
Assert.True(target.WasClicked);
|
|
}
|
|
|
|
[Fact]
|
|
public void Attached_Event_Is_Assigned()
|
|
{
|
|
var xaml = @"<Button xmlns='https://github.com/avaloniaui' Gestures.Tapped='OnTapped'/>";
|
|
var target = new MyButton();
|
|
|
|
AvaloniaRuntimeXamlLoader.Load(xaml, rootInstance: target);
|
|
|
|
target.RaiseEvent(new RoutedEventArgs
|
|
{
|
|
RoutedEvent = Gestures.TappedEvent,
|
|
});
|
|
|
|
Assert.True(target.WasTapped);
|
|
}
|
|
|
|
[Fact]
|
|
public void Exception_Is_Thrown_If_Event_Not_Found()
|
|
{
|
|
var xaml = @"<Button xmlns='https://github.com/avaloniaui' Click='NotFound'/>";
|
|
var target = new MyButton();
|
|
|
|
XamlTestHelpers.AssertThrowsXamlException(() => AvaloniaRuntimeXamlLoader.Load(xaml, rootInstance: target));
|
|
}
|
|
|
|
public class MyButton : Button
|
|
{
|
|
public bool WasClicked { get; private set; }
|
|
public bool WasTapped { get; private set; }
|
|
|
|
public void OnClick(object sender, RoutedEventArgs e) => WasClicked = true;
|
|
public void OnTapped(object sender, RoutedEventArgs e) => WasTapped = true;
|
|
}
|
|
}
|
|
}
|
|
|