1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
[DefaultProperty("Title")]
public partial class User_controle_BcbNews : System.Web.UI.UserControl
{
protected string m_Title = string.Empty;
protected string m_Text = string.Empty;
protected string m_Url = string.Empty;
protected string m_ImageUrl = string.Empty;
[Browsable(true),Bindable(true),Category("Appearance"),DefaultValue("")]
public string Title
{
get { return m_Title; }
set {m_Title = value;}
}
[Browsable(true), Bindable(true), Category("Appearance"), DefaultValue("")]
public string Text
{
get { return m_Text; }
set {m_Text = value;}
}
[Browsable(true), Bindable(true), Category("Appearance"), DefaultValue("")]
public string Url
{
get { return m_Url; }
set {m_Url = value;}
}
[Browsable(true), Bindable(true), Category("Appearance"), DefaultValue("")]
public string ImageUrl
{
get { return m_ImageUrl; }
set {m_ImageUrl = value;}
}
...
} |
Partager