Beispiel #1
0
        public HuePopUpForm(AnimationListControl animationListControl, int hue)
        {
            InitializeComponent();
            Icon = Options.GetFiddlerIcon();
            if ((hue & 0x8000) != 0)
            {
                hue ^= 0x8000;
                HueOnlyGray.Checked = true;
            }
            if (hue != 0)
            {
                control.Selected = hue;
            }

            _animationListControlMob = animationListControl;
        }
Beispiel #2
0
 public AnimationListNewEntriesForm(AnimationListControl form)
 {
     InitializeComponent();
     Icon  = Options.GetFiddlerIcon();
     _form = form;
 }