我想在设备应用程序上循环访问一些数据。例如:
Select name, surname, mail_ad, phone_nr from cust_details
在表单上,我想逐行显示下一个和上一个按钮。例如:
姓名: Werner
Surename: VDH
邮件: werner@me.com
电话号码: 0716848805
[上一页] [下一页]
我一直遇到很多麻烦。我之前使用过List,但它不起作用,就像我希望它能够工作一样。有人可以帮我这里。
我一直在使用List:
public List<String> InfoList = new List<String>();
int i = 1;
conn.Open();
string query;
query = "Select name, surname, mail_ad, phone_nr from cust_details";
OracleCommand cmd = new OracleCommand(query, conn);
OracleDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
this.InfoList.Add(dr["name"].ToString());
this.InfoList.Add(dr["surname"].ToString());
this.InfoList.Add(dr["mail_ad"].ToString());
this.InfoList.Add(dr["phone_nr "].ToString());
}
dr.Close();
conn.Close();
然后在下一个和上一个按钮中:
if (i + 1 < this.InfoList.Count)
label1.Text = this.InfoList[++i];
if (i + 1 < this.InfoList.Count)
label2.Text = this.InfoList[++i];
if (i + 1 < this.InfoList.Count)
label3.Text = this.InfoList[++i];
if (i + 1 < this.InfoList.Count)
label4.Text = this.InfoList[++i];
if (i - 1 < this.InfoList.Count)
label1.Text = this.InfoList[--i];
if (i - 1 < this.InfoList.Count)
label2.Text = this.InfoList[--i];
if (i - 1 < this.InfoList.Count)
label3.Text = this.InfoList[--i];
if (i - 1 < this.InfoList.Count)
label4.Text = this.InfoList[--i];
我正在使用标签来显示数据。我遇到的问题: 有时,当我点击下一个时,标签的顺序会混淆。 或1个标签中没有任何信息。 当我点击上一个并且没有更多细节时,我会得到例外。
答案 0 :(得分:2)
我不知道这是否是你要找的,只是创建一个类然后使用List<YourClass>
。
使用List<YourClass> myList = new List<YourClass>();
要向List添加值,您必须创建YourClass
的对象并在其中定义值:
YourClass myClassObject = new YourClass();
myClassObject.name = dr[i].toString(); //This is the database reader
Class YourClass
包含以下属性:
string name,
string surname,
string mail_address,
string phone_nr.
属性是这样写的,其行为类似于全局变量:
internal string mystring {get; set;}
然后,您可以遍历此列表并使用以下变量:
name_Lbl.Text = this.myList.name[i]; //This is an example.
然后使用按钮的OnPress-Event递增或递减i
。
编辑:正确命名您的课程;)
编辑2:有关属性CLICK ME
的更多信息答案 1 :(得分:0)
把它变成一个班级:
class CustDetails
public string Name
{
get;
set;
}
public string Surname
{
get;
set;
}
public string Email
{
get;
set;
}
public ulong PhoneNumber
{
get;
set;
}
答案 2 :(得分:0)
第1步,将您的详细信息封装到数据包类
中public class CustDetails
{
public string Name {get; set;}
public string Surname {get; set;}
public string MailAddress {get; set;]
public string Phone {get; set;}
}
步骤2.创建CustDetails列表 - 这是您的InfoList
public List<CustDetails> InfoList = new List <CustDetails>();
步骤3.将查询的详细信息分配给新班级
conn.Open();
string query = "Select name, surname, mail_ad, phone_nr from cust_details";
OracleCommand cmd = new OracleCommand(query, conn);
OracleDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
var details = new CustDetails { Name = dr["name"].ToString(),
Surname = dr["surname"].ToString(),
MailAddress = dr["mail_ad"].ToString(),
Phone = dr["phone"].ToString() }
this.InfoList.Add(details);
}
dr.Close();
conn.Close();
步骤4.跟踪您当前的位置。实现访问上一个和下一个按钮中上一个或下一个详细信息的方法。您的上一个和下一个按钮处理程序将分别如下所示:
//previous
if (current == 0)
//you are at the beginning of the list, the button should be disabled,
// handle it accordingly. In this case I just terminate
return;
current--;
var detail = InfoList[current];
label1.Text = detail.Name;
label2.Text = detail.Surname;
label3.Text = detail.MailAddress;
label4.Text = detail.Phone;
//next
if (current == (InfoList.Count -1))
//you are at the endof the list, the button should be disabled,
// handle it accordingly. In this case I just terminate
return;
current++;
var detail = InfoList[current];
label1.Text = detail.Name;
label2.Text = detail.Surname;
label3.Text = detail.MailAddress;
label4.Text = detail.Phone;
确保您可以跟踪方法调用之间的“当前”将其添加为参数,或创建全局变量。