mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-09 16:16:13 -04:00
Avalonia 12 uses compiled bindings by default. Converted all remaining reflection bindings into compiled bindings, Fixed binding errors
19 lines
409 B
C#
19 lines
409 B
C#
namespace LibationAvalonia.Dialogs;
|
|
|
|
public partial class LiberatedStatusBatchAutoDialog : DialogWindow
|
|
{
|
|
public bool SetDownloaded { get; set; }
|
|
public bool SetNotDownloaded { get; set; }
|
|
|
|
public LiberatedStatusBatchAutoDialog()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = this;
|
|
ControlToFocusOnShow = SaveButton;
|
|
}
|
|
|
|
// For compiled bindings
|
|
public new void SaveAndClose() => base.SaveAndClose();
|
|
|
|
}
|