|
|
|
แทนที่ข้อมูลใน Cell ของ DataGridView อย่างไรครับ |
|
|
|
|
|
|
|
ก่อนอื่นก็คงต้องสร้างตัวแปรที่ใช้แปลงจากค่าที่ดึงมาเป็นค่าที่ต้องการให้แสดงผลโดยใช้ Dictionary หรือ array ง่ายๆก็ได้
Code (C#)
var rawValue = 1;
// Dictionary Example
var dictionary = new Dictionary<int, string>();
dictionary[1] = "One";
dictionary[2] = "Two";
dictionary[3] = "Three";
var displayValue = dictionary[rawValue];
// Array Example
var mapping = new[] {"One", "Two", "Three"};
displayValue = mapping[rawValue];
คิดว่าคงตอบได้ตรงคำถามนะครับ
|
ประวัติการแก้ไข 2011-05-08 12:24:16
|
|
|
|
Date :
2011-05-08 12:23:54 |
By :
karlkim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วตอนเอาเข้าไปใส่ dataGrid จะใส่ไปยังไงครับ
|
|
|
|
|
Date :
2011-05-15 02:04:54 |
By :
hamzter |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|