Home
last modified time | relevance | path

Searched refs:ActiveControl (Results 1 – 25 of 1213) sorted by relevance

12345678910>>...49

/dports/cad/zcad/zcad-8b8a693/cad_source/components/zcontrols/
H A Dusupportgui.pas65 if (ActiveControl is TEdit)
66 or (ActiveControl is TEbEdit)
67 or ((ActiveControl is TMemo)and((ActiveControl as TMemo).ReadOnly=false))
76 if ((ActiveControl is TEdit)and((ActiveControl as TEdit).Text<>''))
77 or ((ActiveControl is TMemo)and((ActiveControl as TMemo).Text<>''))
78 or ((ActiveControl is TComboBox)and((ActiveControl as TComboBox).Text<>'')) then
86 if ((ActiveControl is TEdit)and((ActiveControl as TEdit).SelLength<>0))
87 or ((ActiveControl is TMemo)and((ActiveControl as TMemo).SelLength<>0))
88 or ((ActiveControl is TComboBox)and((ActiveControl as TComboBox).SelLength<>0)) then
97 result.DefaultInFocus:=(ActiveControl=DefaultControl)and(ActiveControl<>nil);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/Test/System.Windows.Forms/
H A DFocusTest.cs864 cc.ActiveControl = c1; in ActiveControl2()
870 cc.ActiveControl = c2; in ActiveControl2()
882 cc.ActiveControl = c2; in ActiveControl2()
894 cc.ActiveControl = c3; in ActiveControl2()
910 cc.ActiveControl = c3; in ActiveControl2()
1107 cc.ActiveControl = c1; in ActiveControl_Invisible()
1121 cc.ActiveControl = c1; in ActiveControl_Invisible()
1138 cc.ActiveControl = c1; in ActiveControl_Disabled()
1152 cc.ActiveControl = c1; in ActiveControl_Disabled()
1168 cc.ActiveControl = c1; in ActiveControl_Null()
[all …]
H A DContainerControlTest.cs47 public Control ActiveControl { property in MonoTests.System.Windows.Forms.IContainerControlTest
161 Assert.IsFalse (cc.ActiveControl == txt, "#01"); in RemoveActiveControlTest()
162 cc.ActiveControl = txt; in RemoveActiveControlTest()
163 Assert.AreSame (cc.ActiveControl, txt, "#02"); in RemoveActiveControlTest()
165 Assert.IsNull (cc.ActiveControl, "#03"); in RemoveActiveControlTest()
183 cc.ActiveControl = txt; in RemoveActiveControlTest2()
184 Console.WriteLine (cc.ActiveControl); in RemoveActiveControlTest2()
185 Assert.AreSame (cc.ActiveControl, txt, "#02"); in RemoveActiveControlTest2()
187 Console.WriteLine (cc.ActiveControl); in RemoveActiveControlTest2()
188 Assert.IsNull (cc.ActiveControl, "#03"); in RemoveActiveControlTest2()
[all …]
H A DMdiFormTest.cs183 Assert.IsNull (main.ActiveControl, "#01"); in ActiveControlTest()
185 Assert.AreSame (child1, main.ActiveControl, "#02"); in ActiveControlTest()
187 Assert.AreSame (child2, main.ActiveControl, "#03"); in ActiveControlTest()
189 Assert.AreSame (child3, main.ActiveControl, "#04"); in ActiveControlTest()
204 main.SelectNextControl (main.ActiveControl, true, false, true, true); in SelectNextControlTest()
205 Assert.AreSame (child1, main.ActiveControl, "#01"); in SelectNextControlTest()
207 Assert.AreSame (child2, main.ActiveControl, "#02"); in SelectNextControlTest()
209 Assert.AreSame (child3, main.ActiveControl, "#03"); in SelectNextControlTest()
226 Assert.AreSame (child2, main.ActiveControl, "#01"); in SelectPreviousControlTest()
228 Assert.AreSame (child1, main.ActiveControl, "#02"); in SelectPreviousControlTest()
[all …]
/dports/editors/lazarus/lazarus/lcl/include/
H A Dcommondialog.inc46 if (Screen.ActiveControl<>nil) and (Screen.ActiveControl.HandleAllocated)
47 and (GetFocus<>Screen.ActiveControl.Handle) then
48 SetFocus(Screen.ActiveControl.Handle); // must restore focus after Screen.EnableForms
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/include/
H A Dcommondialog.inc46 if (Screen.ActiveControl<>nil) and (Screen.ActiveControl.HandleAllocated)
47 and (GetFocus<>Screen.ActiveControl.Handle) then
48 SetFocus(Screen.ActiveControl.Handle); // must restore focus after Screen.EnableForms
/dports/editors/lazarus-qt5/lazarus/lcl/include/
H A Dcommondialog.inc46 if (Screen.ActiveControl<>nil) and (Screen.ActiveControl.HandleAllocated)
47 and (GetFocus<>Screen.ActiveControl.Handle) then
48 SetFocus(Screen.ActiveControl.Handle); // must restore focus after Screen.EnableForms
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/include/
H A Dcommondialog.inc46 if (Screen.ActiveControl<>nil) and (Screen.ActiveControl.HandleAllocated)
47 and (GetFocus<>Screen.ActiveControl.Handle) then
48 SetFocus(Screen.ActiveControl.Handle); // must restore focus after Screen.EnableForms
/dports/cad/zcad/zcad-8b8a693/cad_source/zcad/electrotech/
H A Duzcregelectrotechfeatures.pas66 StringsTreeSelector.ActiveControl:=StringsTreeSelector.StringsTree;
85 StringsTreeSelector.ActiveControl:=StringsTreeSelector.StringsTree;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/System.Windows.Forms/
H A DForm.cs260 if (this.ActiveControl == null) { in SelectActiveControl()
274 Select (ActiveControl); in SelectActiveControl()
2271 ActiveControl.Invalidate (); in ProcessTabKey()
2297 parent.ActiveControl = this; in Select()
2415 if (ActiveControl == null) in SetVisibleCore()
2417 if (ActiveControl != null) in SetVisibleCore()
2670 if (ActiveControl != null && !ActiveControl.Focused) in WmActivate()
2689 if (ActiveControl != null && ActiveControl != this) { in WmSetFocus()
2690 ActiveControl.Focus (); in WmSetFocus()
2846 ActiveControl.Invalidate (); in ActivateFocusCues()
[all …]
H A DContainerControl.cs66 public Control ActiveControl { property in System.Windows.Forms.ContainerControl
293 Control active = container.ActiveControl; in GetMostDeeplyNestedActiveControl()
295 if (((ContainerControl)active).ActiveControl == null) in GetMostDeeplyNestedActiveControl()
297 active = ((ContainerControl)active).ActiveControl; in GetMostDeeplyNestedActiveControl()
664 parent.ActiveControl = this; in Select()
H A DIContainerControl.cs32 Control ActiveControl {get; set;} property
/dports/editors/lazarus/examples/dockmanager/easytree/
H A Dftree.lfm6 ActiveControl = Memo1
/dports/editors/lazarus-devel/examples/dockmanager/easytree/
H A Dftree.lfm6 ActiveControl = Memo1
/dports/editors/lazarus-qt5/examples/dockmanager/easytree/
H A Dftree.lfm6 ActiveControl = Memo1
/dports/editors/lazarus-qt5-devel/examples/dockmanager/easytree/
H A Dftree.lfm6 ActiveControl = Memo1
/dports/editors/lazarus-devel/examples/lclversion/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus/examples/lclversion/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus-qt5/examples/lclversion/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus-qt5-devel/examples/lclversion/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus/lazarus/test/bugs/7462/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/test/bugs/7462/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus-qt5/lazarus/test/bugs/7462/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/test/bugs/7462/
H A Dunit1.lfm8 ActiveControl = Memo1
/dports/editors/lazarus/examples/multithreading/
H A Dprocessmessagesunit1.lfm8 ActiveControl = StartStopButton

12345678910>>...49