1樓:匿名使用者
用列舉呀!
public enum valuetype.net支援中文命名,雖然有些奇怪。
轉換時先將數值用列舉表示,然後用tostring()int value = 0;
//現假設value為要轉換的數值
valuetype venum = value;
string outputvalue = venum.tostring();
//outputvalue就是轉換後的值
2樓:霜之
在為datasource賦值之前,先迴圈你datatable的row,然後取出row裡邊你想要操作的列。
判斷這個列的值,是否等於1,等於1的話。把「獲取」賦給這個列。以此類推,最後顯示的時候,就是你想要的結果了。
祝你好運。
3樓:
資料表裡加一列aaa varchar(10)update 表名 set aaa='獲取' where xx=1;
update 表名 set aaa='採納' where xx=2;
然後顯示層需要用1就提取xx列 需要用到string就提取aaa列的值
4樓:匿名使用者
.tostring()啊
c#中如何將listview中選中的item,通過按鍵後,將其中原先的內容轉化為string字串
5樓:匿名使用者
沒記錯的話你可以試試item的click或者doubleclick事件,定義一個全域性string變數。這樣好像不需要按鈕就可以完成。
c#中如何將字串與顏色相互轉換
6樓:匿名使用者
將顏色的name取出來,新增到listview當中,然後,點選listview的item時,再將name轉化為顏色就可以了啊,不知道你是不是要這個...
//取顏色的name放到listview中color color = color.blue;
string ss = color.name;
this.listview1.items.add(ss);
//根據字串取顏色
string mm= listview1.items[listview1.focuseditem.index].text;
color cl = color.fromname(mm);
7樓:
string c1 = system.drawing.colortranslator.tohtml(system.drawing.color.red);
// c1 = "#ff0000";或c1 = "red";
system.drawing.color c2 = system.drawing.colortranslator.fromhtml("#ff0000");
8樓:滄海v飛天
listview list = new listview();
list.tag = color.red;
color color = (color)list.tag;
messagebox.show(color.tostring());
9樓:半點詩魂
提供一個思路,用typeconverter類去做
c# winform的 listview控制元件怎麼按行插入數值?
10樓:
應該可以用for迴圈遍歷吧,你要想到你插入的不止3行,而且你也不知道幾行呢?
11樓:匿名使用者
listviewitem o=new listviewitem();
o.text="1";
o.subitem[1].text="2";
o.subitem[2].text="3";
然後再呼叫
listview1.listitem.add(o);
這樣就可以了.
方法就是這樣的.你可以看看就明白了.上面的**我隨手寫的沒有除錯.
12樓:
this.listview1.items.add(1+ "");
this.listview1.items[this.listview1.items.count].subitems.add("張三");
this.listview1.items[this.listview1.items.count].subitems.add(1+"");
13樓:匿名使用者
this.listview1.items.add(new listviewitem(new string ));
c 中怎麼把字元轉換成字串,c 中怎麼把一個字元轉換成字串
char a a char str include stdio.h include include voidmain intn 123456789 charstr 20 itoa n,str,10 printf s n str 擴充套件資料int轉string的方式 1 採用標準庫中的to stri...
C中如何把類似「10,20,30,40,50」的具有特殊分割符號的字串轉換為陣列儲存
string s 10 20 30 40 50 string stri s.split foreach string str in stri string str 10,20,30,40,50 string astr str.split astr就是你要的結果了。樓主也在上位元啊。哈哈哈。c 怎麼分...
c中的冪怎麼用,C中乘方怎麼輸入
可以呼叫個頭抄檔案裡面有襲個pow函式,函式原型extern float pow float x,float y 呼叫的 時候比說a pow b,2 b就是底數,2就是冪,用這個函式就能進行冪運算了。表示一個數自乘若干次的形式,如a自乘n次的冪為a n 或稱a n為a的n次冪 同意樓上的說法,如果你...