123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.Customers.SetSmallForm
- {
- public partial class ConditionQuerySamllForm : LYFZ.Software.UI.Customers.SetSmallForm.ConditionQuerySamllForm
- {
- public ConditionQuerySamllForm()
- {
- this.Shown += ConditionQuerySamllForm_Shown;
- this.txtAgesEnd.KeyPress += txtAgesEnd_KeyPress;
- this.txtAgesStart.KeyPress += txtAgesStart_KeyPress;
- this.chkAgesGrow.Click += chkAgesGrow_Click;
- this.chkAgesOrder.Click += chkAgesOrder_Click;
- this.btnOK.Click += btnOK_Click;
- this.btnCanael.Click += btnCanael_Click;
- }
- public bool IsSaveed = false;
- public string StrLoadType = "";
- public Hashtable htData = new Hashtable();
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void ConditionQuerySamllForm_Shown(object sender, EventArgs e)
- {
- if (this.StrLoadType == "1" || string.IsNullOrEmpty(this.StrLoadType))
- {
- TreeNode root = new TreeNode();
- root.Text = "岁";
- root.Tag = "Age_Year";
- root.Name = "Age_Year";
- this.cmbtreevAge.Nodes.Add(root);
- root = new TreeNode();
- root.Text = "天";
- root.Tag = "Age_Day";
- root.Name = "Age_Day";
- this.cmbtreevAge.Nodes.Add(root);
- this.cmbtreevAge.TextFindTag("天");
- }
- else
- { this.panelAges.Visible = false; }
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_ClientRelation("AAAAAAC", this.cmbtreevRegion, IsFirstNodeNull: true);
- }
- /// <summary>
- /// 结束年龄输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtAgesEnd_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- }
- /// <summary>
- /// 开始年龄输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void txtAgesStart_KeyPress(object sender, KeyPressEventArgs e)
- {
- if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
- { e.Handled = true; }
- }
- /// <summary>
- /// 按成长年龄点击
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkAgesGrow_Click(object sender, EventArgs e)
- {
- this.chkAgesGrow.Checked = true;
- this.chkAgesOrder.Checked = false;
- }
- /// <summary>
- /// 按订单年龄点击
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void chkAgesOrder_Click(object sender, EventArgs e)
- {
- this.chkAgesOrder.Checked = true;
- this.chkAgesGrow.Checked = false;
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnOK_Click(object sender, EventArgs e)
- {
- if (!string.IsNullOrEmpty(this.cmbtreevRegion.Text.Trim()))
- { htData["ClientRegion"] = this.cmbtreevRegion.Text.Trim(); }
- if (!string.IsNullOrEmpty(this.txtAgesStart.Text.Trim()))
- { htData["AgesStart"] = this.txtAgesStart.Text.Trim(); }
- if (!string.IsNullOrEmpty(this.txtAgesEnd.Text.Trim()))
- { htData["AgesEnd"] = this.txtAgesEnd.Text.Trim(); }
- if (this.chkAgesOrder.Checked)
- { htData["AgesType"] = "Order"; }
- if (this.chkAgesGrow.Checked)
- { htData["AgesType"] = "Grow"; }
- if (!string.IsNullOrEmpty(this.txtAgesStart.Text.Trim()) || !string.IsNullOrEmpty(this.txtAgesEnd.Text.Trim()))
- {
- if (this.cmbtreevAge.Text.Trim() == "")
- { MessageBoxCustom.Show("年龄未选择是按岁查还是按天查"); return; }
- htData["GrowAges"] = this.cmbtreevAge.Tag.ToString().Trim();
- htData["OrderAges"] = this.cmbtreevAge.Text.Trim();
- }
- this.IsSaveed = true;
- this.Close();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnCanael_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|