35 lines
882 B
C#
35 lines
882 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 EliteBGS {
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for AdjustProfitWindow.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class AdjustProfitWindow : Window {
|
|||
|
public AdjustProfitWindow() {
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
private void Cancel_Click(object sender, RoutedEventArgs e) {
|
|||
|
DialogResult = false;
|
|||
|
Close();
|
|||
|
}
|
|||
|
|
|||
|
private void Accept_Click(object sender, RoutedEventArgs e) {
|
|||
|
DialogResult = true;
|
|||
|
Close();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|