UserControOne.xaml.cs
480 Bytes
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;
}
}
}
}