Blame view

OS.Spin/OS.Spin.View/SquareBox/UserControOne.xaml.cs 480 Bytes
8ca6e89d   Tuo Wenbo   20211021
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  using System.Windows.Controls;
  
  namespace OS.Spin.View.SquareBox
  {
      /// <summary>
      /// UserControOne.xaml 的交互逻辑
      /// </summary>
      public partial class UserControOne : UserControl
      {
          public UserControOne()
          {
              InitializeComponent();
          }
  
          public StackPanel StackPanel
          {
              get { return stackPanel; }
              set
              {
                  stackPanel = value;
              }
          }
      }
  }