You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
854 B
34 lines
854 B
using BBWY.Controls;
|
|
|
|
namespace BBWY.Client.Views.FinancialTerminal
|
|
{
|
|
/// <summary>
|
|
/// ProcurementAuditExcelExport.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class ProcurementAuditExcelExport : BWindow
|
|
{
|
|
public ProcurementAuditExcelExport()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 当前表格内容=0,资金类型汇总=1
|
|
/// </summary>
|
|
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();
|
|
}
|
|
}
|
|
}
|
|
|