Files
lserp_cs_6.0/插件库/Lskj.PubInvoiceOut/FrmSelectMsg.cs
T
tdx e28188af85 SVN r1146
SVN-Revision: r1146
2026-03-22 13:50:57 +00:00

31 lines
797 B
C#

using Lskj.Control;
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 Lskj.PubInvoiceOut
{
public partial class FrmSelectMsg : BaseForm
{
public ComboBoxModel SelectModel
{
get
{
return (ComboBoxModel)txtEdit.SelectedItem;
}
}
public FrmSelectMsg()
{
InitializeComponent();
this.Load += FrmSelectMsg_Load;
}
private void FrmSelectMsg_Load(object sender, EventArgs e)
{
txtEdit.Properties.Items.Add(new ComboBoxModel() { ValueMember = "1", DisplayMember = "销货退回" });
tx