2024年4月12日发(作者:)
}
public object ItemDisplayText{
get{
return itemDisplayText;
}
}
public SelectItemChangedArgs (object iValue, object iDisplayText)
{
itemValue = iValue;
itemDisplayText = iDisplayText;
}
}
///
/// 选择项更改事件
///
public event EventHandler
public object SelectValue {
get { return currentValue; }
}
public object SelectDisplayText {
get { return currentDisplayText; }
}
public float ShowListTime {
get { return showListTime; }
}
///
/// 数据源
///
public Dictionary
set{
dataSource = value;
currentDisplayText = null;
currentValue = null;
}
get{
return dataSource;
}


发布评论