基线 SVN r240
SVN-Revision: r240
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CsHospital.UserControls
|
||||
{
|
||||
public partial class UserSsjb : UserControl
|
||||
{
|
||||
public UserSsjb()
|
||||
{
|
||||
InitializeComponent();
|
||||
DataTable f_ssjb = new DataTable();
|
||||
f_ssjb.Columns.Add("编号");
|
||||
f_ssjb.Columns.Add("级别");
|
||||
f_ssjb.Rows.Add("1", "1级");
|
||||
f_ssjb.Rows.Add("2", "2级");
|
||||
f_ssjb.Rows.Add("3", "3级");
|
||||
f_ssjb.Rows.Add("4", "4级");
|
||||
this.lookUpEdit1.Properties.DataSource = f_ssjb;
|
||||
}
|
||||
/// <summary>
|
||||
/// 下拉框对象
|
||||
/// </summary>
|
||||
public DevExpress.XtraEditors.LookUpEdit lookUpEditObject { get { return lookUpEdit1; } }
|
||||
/// <summary>
|
||||
/// 回车触发下一个
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
private void textBox_KeyPress(object sender, KeyPressEventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user