mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
22 lines
499 B
C#
22 lines
499 B
C#
using System.Windows.Controls;
|
|
|
|
namespace NebulaAuth.View.Dialogs
|
|
{
|
|
/// <summary>
|
|
/// Логика взаимодействия для ConfirmCancelDialog.xaml
|
|
/// </summary>
|
|
public partial class ConfirmCancelDialog : UserControl
|
|
{
|
|
public ConfirmCancelDialog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public ConfirmCancelDialog(string msg)
|
|
{
|
|
InitializeComponent();
|
|
ConfirmTextBlock.Text = msg;
|
|
}
|
|
}
|
|
}
|