UCDdj.cs 820 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace UserCtrlsByDXC
{
    public partial class UCDdj : UserControl
    {
        public UCDdj()
        {
            InitializeComponent();
        }
        private bool hCleft;
        public bool HCleft
        {
            get { return hCleft; }
            set
            {
                hCleft = value;
                btnHCleft.Visible = hCleft;
            }
        }
        private bool hCright;
        public bool HCright
        {
            get { return hCright; }
            set
            {
                hCright = value;
                btnHCright.Visible = hCright;
            }
        }
    }
}