SVN r1007

SVN-Revision: r1007
This commit is contained in:
tdx
2025-09-28 08:34:02 +00:00
parent 8e25337079
commit cccdda0f7c
15 changed files with 0 additions and 3749 deletions
@@ -1,38 +0,0 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
namespace Lskj.PubBomAlter.Model
{
public class ComboBoxModel
{
public ComboBoxModel(DataRow _rowItem)
{
SourceItem = _rowItem;
}
public DataRow SourceItem;
public string ValueMember;
public string DisplayMember;
public string Text
{
get
{
return SourceItem[DisplayMember] + "";
}
}
public string Value
{
get
{
return SourceItem[ValueMember] + "";
}
}
public override string ToString()
{
return SourceItem[DisplayMember] + "";
}
}
}