41 lines
776 B
C#
41 lines
776 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Lskj.Main.Control
|
|
{
|
|
public partial class GroupPage : UserControl
|
|
{
|
|
public GroupPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
public Panel CollectPanel
|
|
{
|
|
get
|
|
{
|
|
return collectPanel;
|
|
}
|
|
}
|
|
public Panel CollectMenuPanel
|
|
{
|
|
get
|
|
{
|
|
return collectMenuPanel;
|
|
}
|
|
}
|
|
public Panel AllMenuPanel
|
|
{
|
|
get
|
|
{
|
|
return allMenuPanel;
|
|
}
|
|
}
|
|
}
|
|
}
|