UserControl1.xaml.cs
467 Bytes
using System.Windows.Controls;
namespace OS.Spin.View.SquareBox
{
/// <summary>
/// UserControl1.xaml 的交互逻辑
/// </summary>
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
}
public StackPanel StackPanel
{
get { return stack; }
set
{
stack = value;
}
}
}
}