终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

59 linhas
1.7 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. namespace BPASmartClient.CustomResource.UserControls
  16. {
  17. /// <summary>
  18. /// IcoButton.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class IcoButton : UserControl
  21. {
  22. public IcoButton()
  23. {
  24. InitializeComponent();
  25. }
  26. public static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
  27. {
  28. (d as IcoButton).Refresh();
  29. }
  30. private void Refresh()
  31. {
  32. }
  33. public int BorderThickness
  34. {
  35. get { return (int)GetValue(BorderThicknessProperty); }
  36. set { SetValue(BorderThicknessProperty, value); }
  37. }
  38. public static readonly DependencyProperty BorderThicknessProperty =
  39. DependencyProperty.Register("BorderThickness", typeof(int), typeof(IcoButton),
  40. new PropertyMetadata(2, new PropertyChangedCallback(OnPropertyChanged)));
  41. public string IcoText
  42. {
  43. get { return (string)GetValue(IcoTextProperty); }
  44. set { SetValue(IcoTextProperty, value); }
  45. }
  46. public static readonly DependencyProperty IcoTextProperty =
  47. DependencyProperty.Register("IcoText", typeof(string), typeof(IcoButton),
  48. new PropertyMetadata("", new PropertyChangedCallback(OnPropertyChanged)));
  49. }
  50. }