mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
36 lines
849 B
C#
36 lines
849 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace Bloxstrap.UI.Elements.Dialogs
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for AddFlagDialog.xaml
|
|
/// </summary>
|
|
public partial class AddFastFlagDialog
|
|
{
|
|
public MessageBoxResult Result = MessageBoxResult.Cancel;
|
|
|
|
public AddFastFlagDialog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void OKButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
Result = MessageBoxResult.OK;
|
|
Close();
|
|
}
|
|
}
|
|
}
|