輸出html 標籤有以下幾種方式 ~
用htmltextwrter 輸入
code
output.addattribute(htmltextwriterattribute.href,
"");
output.addattribute(htmltextwriterattribute.target,
"blank");
output.addstyleattribute(htmltextwriterstyle.color,
"red");
output.addstyleattribute(htmltextwriterstyle.cursor,
"hand");
output.renderbegintag(htmltextwritertag.a);
output.write(
this
.text);
output.renderendtag();
output.writebreak();
output.addattribute 方法是生成控制項的屬性. 也可以直接用 htmltextwriterstyle 列舉輸出
如code
output.addattribute(htmltextwriterattribute.bgcolor,
"@6699ff");
output.addattribute(
"bgcolor",
"#6699ff");
output.addattribute(htmltextwriterattribute.checked,
"true");
output.addattribute(
"checked",
"true");
給控制項增加樣式:
output.addstyleattribute(htmltextwriterstyle.borderwidth, "10
");output.addstyleattribute(htmltextwriterstyle.width,
"500px");
還可以output.addstyleattribute(
"width",
"500px");
output.addstyleattribute(
"height",
"500px");
直接輸出 html
output.write(""
);output.write(
this
.width);
output.write(""
);output.write(this.width) 當輸入的是乙個有效的html 標籤。就正常輸出,如果不是個有效的html標籤就輸入改屬性的text文字
學習自定義控制項
今天晚上在宿舍狠狠得看了一點關乎自定義控制項與gdi 相結合的例子,終於看得懂一點了.原來每個控制項的細節外觀都是一點點畫出來的,也許這需要對色彩有較強的敏感度,但沒事,我有時間慢慢測試。現在不僅要自定義按鈕,同時還要自定義窗體和選單的外觀,有點計畫去模仿qq2009的效果,嘿嘿 不過在自定義控制項...
自定義控制項 自定義鐘錶
private context mcontext 畫筆 private paint mpaint 控制項的寬 private int mwidth x方向的圓心座標 private int center 鐘錶的半徑 private int mradio 圓環的寬 private int stroke...
學習日誌 自定義控制項
最簡單的自定義控制項,不帶全名空間。直接就在某個view的構造方法裡寫這些個資料,構造方法的上部分其實就是讀取這些個配置資料的大小,然後在最後呼叫某個布局,把剛剛讀取到值給設定進去。package cn.eoe.widget import android.content.context import...