以下拉列表為例:
public static dependencyproperty executemodeproperty = system.workflow.componentmodel.dependencyproperty.register("executemode", typeof(string), typeof(class));
[description("")]
[category("")]
[browsable(true)]
[typeconverter(typeof(executemodeitems))]
[designerserializationvisibility(designerserializationvisibility.visible)]
public string executemode
set}
executemodeltems.cs :
using system;
using system.collections.generic;
using system.text;
using system.componentmodel;
namespace reap.workflow.activities
);public override bool getstandardvaluessupported(itypedescriptorcontext context)
public override bool getstandardvalue***clusive(
itypedescriptorcontext context)
public override standardvaluescollection getstandardvalues(
itypedescriptorcontext context)}}
這樣屬性executemode就變為下拉選擇的形式了
ext自定義編輯器
現在搞安卓已經有幾個月了。安卓實在是博大精深,幾個月下來感覺自己還是個門外漢,什麼廣播,什麼aidl。都不怎麼會用。做的軟體總感覺把握不住。感覺道路還很漫長。既然學習路程這麼漫長,過程中也有休息的時候,今天看了下以前學習ssh開發的乙個系統,頓時感覺自己在退步。以前開發的,現在感覺做起來有點困難。這...
spring中的自定義編輯器
spring中的自定義編輯器 乙個bean中有另乙個bean的屬性,用自定義編輯器,可以省bean標籤。public class addressediter extends propertyeditorsupport override public void setastext string tex...
修改自定義資料型別的精度
修改自定義資料型別精度的示例 自定義資料型別一旦被引用,就不能再修改和刪除,如果要修改資料的精度,就非常麻煩,下面的示例演示了如何修改 假設要修改的自定義變數名為aa 1.修改自定義變數型別的名稱 exec sp rename aa aa bak userdatatype go 2.新增自定義變數 ...