SVN r1146

SVN-Revision: r1146
This commit is contained in:
tdx
2026-03-22 13:50:57 +00:00
parent 84bfbbb067
commit e28188af85
6 changed files with 719 additions and 55 deletions
@@ -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