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.
91 lines
3.1 KiB
91 lines
3.1 KiB
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using ControlCatalog.ViewModels;
|
|
using Avalonia.Interactivity;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ControlCatalog.Pages
|
|
{
|
|
public class ContextFlyoutPage : UserControl
|
|
{
|
|
private TextBox _textBox;
|
|
|
|
public ContextFlyoutPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
DataContext = new ContextPageViewModel();
|
|
|
|
_textBox = this.FindControl<TextBox>("TextBox");
|
|
|
|
var cutButton = this.FindControl<Button>("CutButton");
|
|
cutButton.Click += CloseFlyout;
|
|
|
|
var copyButton = this.FindControl<Button>("CopyButton");
|
|
copyButton.Click += CloseFlyout;
|
|
|
|
var pasteButton = this.FindControl<Button>("PasteButton");
|
|
pasteButton.Click += CloseFlyout;
|
|
|
|
var clearButton = this.FindControl<Button>("ClearButton");
|
|
clearButton.Click += CloseFlyout;
|
|
|
|
var customContextRequestedBorder = this.FindControl<Border>("CustomContextRequestedBorder");
|
|
customContextRequestedBorder.AddHandler(ContextRequestedEvent, CustomContextRequested, RoutingStrategies.Tunnel);
|
|
|
|
var cancellableContextBorder = this.FindControl<Border>("CancellableContextBorder");
|
|
cancellableContextBorder.ContextFlyout!.Closing += ContextFlyoutPage_Closing;
|
|
cancellableContextBorder.ContextFlyout!.Opening += ContextFlyoutPage_Opening;
|
|
}
|
|
|
|
private ContextPageViewModel _model;
|
|
protected override void OnDataContextChanged(EventArgs e)
|
|
{
|
|
if (_model != null)
|
|
_model.View = null;
|
|
_model = DataContext as ContextPageViewModel;
|
|
if (_model != null)
|
|
_model.View = this;
|
|
|
|
base.OnDataContextChanged(e);
|
|
}
|
|
|
|
private void ContextFlyoutPage_Closing(object sender, CancelEventArgs e)
|
|
{
|
|
var cancelCloseCheckBox = this.FindControl<CheckBox>("CancelCloseCheckBox");
|
|
e.Cancel = cancelCloseCheckBox.IsChecked ?? false;
|
|
}
|
|
|
|
private void ContextFlyoutPage_Opening(object sender, EventArgs e)
|
|
{
|
|
if (e is CancelEventArgs cancelArgs)
|
|
{
|
|
var cancelCloseCheckBox = this.FindControl<CheckBox>("CancelOpenCheckBox");
|
|
cancelArgs.Cancel = cancelCloseCheckBox.IsChecked ?? false;
|
|
}
|
|
}
|
|
|
|
private void CloseFlyout(object sender, RoutedEventArgs e)
|
|
{
|
|
_textBox.ContextFlyout.Hide();
|
|
}
|
|
|
|
public void CustomContextRequested(object sender, ContextRequestedEventArgs e)
|
|
{
|
|
var border = (Border)sender;
|
|
var textBlock = (TextBlock)border.Child;
|
|
|
|
textBlock.Text = e.TryGetPosition(border, out var point)
|
|
? $"Context was requested with pointer at: {point.X:N0}, {point.Y:N0}"
|
|
: "Context was requested without pointer";
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|
|
|