public frmSearchReplace(frmMain parent, Localizer localizer)
        {
            this.parent = parent;

            InitializeComponent();

            this.Reset();

            this.localizer = localizer;

            this.localizer.LocalizeControls(this);

            this.ImeMode = ImeMode.On;
        }
Ejemplo n.º 2
0
        public frmTabView(frmMain parent,
            object element,
            SepararatorCollection separators,
            HighLightDescriptorCollection hdc,
            Localizer localizer)
        {
            this.parent = parent;
            this.currentElement = element;
            this.localizer = localizer;
            this.hdc = hdc;
            this.separators = separators;

            InitializeComponent();

            localizer.LocalizeControls(this);

            this.ImeMode = ImeMode.On;
        }