Guest User

Untitled

a guest
Jul 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class AddButton : ImageButton
  2. {
  3. public AddButton():base()
  4. {
  5. ImageUrl = "https://ссылка_на_картинку";
  6. ToolTip = "Добавить";
  7. AlternateText = "Добавить";
  8. }
  9. }
  10.  
  11. public MyPanel()
  12. {
  13. Controls.Add(new AddButton());
  14. }
Add Comment
Please, Sign In to add comment