e28188af85
SVN-Revision: r1146
31 lines
797 B
C#
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 |