Deutsch
Germany.ruФорумы → Архив Досок→ Программирование

Infragistics PropertyBrowser control

217  1 2 3 4 все
  saschka_net посетитель09.05.06 08:45
NEW 09.05.06 08:45 
в ответ krys 04.05.06 14:58
Просто наследуй от цонтролла и добавляй свои Проперты
[DefaultProperty("Text"), ToolboxData("<{0}:CheckBoxEx runat=\"server\" />")]
public class CheckBoxEx : System.Web.UI.WebControls.CheckBox, IPostBackEventHandler
{
public string CommandArgument
{
get { return this.ViewState["CommandArgument"] as string; }
set { this.ViewState["CommandArgument"] = value; }
}
public string CommandName
{
get { return this.ViewState["CommandName"] as string; }
set { this.ViewState["CommandName"] = value; }
}
}
#61 
Simple Nothing is f*cked09.05.06 08:50
Simple
NEW 09.05.06 08:50 
в ответ saschka_net 09.05.06 08:45
Ы? Написано же было:
В ответ на:
работаю visual Studio C++ 6

#62 
1 2 3 4 все