mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-19 23:05:03 +00:00
* Unify UI buttons Use Theme Accent as highlight Fix browser concurrency issues Fix browser enable/disable during runtime Unify button sizes and looks Closes #235 Closes #236 * Increment version
23 lines
442 B
C#
23 lines
442 B
C#
using System;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Daybreak.Controls.Buttons;
|
|
|
|
/// <summary>
|
|
/// Interaction logic for BackButton.xaml
|
|
/// </summary>
|
|
public partial class BackButton : UserControl
|
|
{
|
|
public event EventHandler? Clicked;
|
|
|
|
public BackButton()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
private void HighlightButton_Clicked(object sender, EventArgs e)
|
|
{
|
|
this.Clicked?.Invoke(this, e);
|
|
}
|
|
}
|