mirror of
https://github.com/openziti/desktop-edge-win.git
synced 2026-09-21 18:33:24 +00:00
73 lines
2.6 KiB
C#
73 lines
2.6 KiB
C#
/*
|
|
Copyright NetFoundry Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
using System.Windows.Controls;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZitiDesktopEdge {
|
|
public partial class ConfirmationDialog : UserControl {
|
|
public static readonly DependencyProperty TitleProperty =
|
|
DependencyProperty.Register(nameof(Title), typeof(string), typeof(ConfirmationDialog), new PropertyMetadata("Confirmation Title"));
|
|
|
|
public static readonly DependencyProperty DescriptionProperty =
|
|
DependencyProperty.Register(nameof(Description), typeof(string), typeof(ConfirmationDialog), new PropertyMetadata("This is the description."));
|
|
|
|
public static readonly DependencyProperty OkFuncProperty =
|
|
DependencyProperty.Register(nameof(OkFunc), typeof(ICommand), typeof(ConfirmationDialog));
|
|
|
|
public static readonly DependencyProperty CancelFuncProperty =
|
|
DependencyProperty.Register(nameof(CancelFunc), typeof(ICommand), typeof(ConfirmationDialog));
|
|
|
|
public string Title {
|
|
get => (string)GetValue(TitleProperty);
|
|
set => SetValue(TitleProperty, value);
|
|
}
|
|
|
|
public string Description {
|
|
get => (string)GetValue(DescriptionProperty);
|
|
set => SetValue(DescriptionProperty, value);
|
|
}
|
|
|
|
public ICommand OkFunc {
|
|
get => (ICommand)GetValue(OkFuncProperty);
|
|
set => SetValue(OkFuncProperty, value);
|
|
}
|
|
|
|
public ICommand CancelFunc {
|
|
get => (ICommand)GetValue(CancelFuncProperty);
|
|
set => SetValue(CancelFuncProperty, value);
|
|
}
|
|
|
|
public ConfirmationDialog() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ExecuteClose(object sender, MouseButtonEventArgs e) {
|
|
CancelFunc.Execute(null);
|
|
}
|
|
|
|
private void CancelAction(object sender, MouseButtonEventArgs e) {
|
|
CancelFunc.Execute(null);
|
|
}
|
|
|
|
private void ConfirmationAction(object sender, MouseButtonEventArgs e) {
|
|
OkFunc.Execute(null);
|
|
}
|
|
}
|
|
}
|