1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using LYFZ.ComponentLibrary;
- using System;
- 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.UI.OAShopManagement
- {
- public partial class frmThridPayConfig : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public frmThridPayConfig()
- {
- InitializeComponent();
- btn_AliCancel.Click += btn_AliCancel_Click;
- btn_AliCheck.Click += btn_AliCheck_Click;
- btn_AliOK.Click += btn_AliOK_Click;
- btn_Check.Click += btn_Check_Click;
- btn_Update.Click += btn_Update_Click;
- rdo_WXAgentBtn.Click += rdo_WXAgentBtn_Click;
- rdo_WXAutonomyBtn.Click += rdo_WXAgentBtn_Click;
- rdo_ZFBAgentBtn.Click += rdo_WXAgentBtn_Click;
- rdo_ZFBAutonomyBtn.Click += rdo_WXAgentBtn_Click;
- rdo_WXAgentBtn_Click(null,null);
- }
- public void rdo_WXAgentBtn_Click(object sender, EventArgs e)
- {
- if (rdo_WXAgentBtn.Checked)
- {
- groupBoxEx1.Height = 118;
- groupBoxEx1.Refresh();
- }
- else if (rdo_WXAutonomyBtn.Checked)
- {
- groupBoxEx1.Height = 200;
- groupBoxEx1.Refresh();
- }
- else if (rdo_ZFBAgentBtn.Checked)
- {
- }
- else if (rdo_ZFBAutonomyBtn.Checked)
- {
- }
- }
- public virtual void btn_Update_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- public virtual void btn_Check_Click(object sender, EventArgs e)
- {
- // throw new NotImplementedException();
- }
- public virtual void btn_AliOK_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- public virtual void btn_AliCheck_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- public virtual void btn_AliCancel_Click(object sender, EventArgs e)
- {
- ///throw new NotImplementedException();
- }
-
- }
- }
|