using BBWY.Controls;
namespace BBWY.Client.Views.FinancialTerminal
{
///
/// ProcurementAuditExcelExport.xaml 的交互逻辑
///
public partial class ProcurementAuditExcelExport : BWindow
{
public ProcurementAuditExcelExport()
{
InitializeComponent();
}
///
/// 当前表格内容=0,资金类型汇总=1
///
public int Type { get; private set; }
private void BButton_Click(object sender, System.Windows.RoutedEventArgs e)
{
Type = 0;
DialogResult = true;
Close();
}
private void BButton_Click_1(object sender, System.Windows.RoutedEventArgs e)
{
Type = 1;
DialogResult = true;
Close();
}
}
}