SVN r1146
SVN-Revision: r1146
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
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
|
||||
Reference in New Issue
Block a user