2 implementations of OnComponentEnterState
System.Windows.Forms (1)
System\Windows\Forms\Application.ComponentManager.cs (1)
151void IMsoComponentManager.Interface.OnComponentEnterState(
System.Windows.Forms.Primitives (1)
Microsoft\Office\IMsoComponentManager.NativeAdapter.cs (1)
64void Interface.OnComponentEnterState(
13 references to OnComponentEnterState
System.Windows.Forms (1)
System\Windows\Forms\Application.ComponentThreadContext.cs (1)
162ComponentManager?.OnComponentEnterState(_componentID, msocstate.Modal, msoccontext.All, 0, null, 0);
System.Windows.Forms.Primitives (6)
Microsoft\Office\IMsoComponentManager.cs (6)
113/// <inheritdoc cref="Interface.OnComponentEnterState(nuint, msocstate, msoccontext, uint, IMsoComponentManager**, uint)"/> 203/// Calls to <see cref="OnComponentEnterState"/> and <see cref="FOnComponentExitState"/> can be used to affect 360/// That is, if n <see cref="OnComponentEnterState"/> calls are made, the component is 364/// <see cref="OnComponentEnterState"/> calls it has made. 401/// are as they are in <see cref="OnComponentEnterState"/>. 412/// Note: n calls to this method are symmetric with n calls to <see cref="OnComponentEnterState"/>.
System.Windows.Forms.Tests (6)
System\Windows\Forms\Application.ComponentManagerTests.cs (6)
176manager.OnComponentEnterState(default, default, default, default, null, default); 193manager.OnComponentEnterState(default, msocstate.Modal, msoccontext.Others, 0, null, 0); 196manager.OnComponentEnterState(default, msocstate.Modal, msoccontext.All, 0, null, 0); 199manager.OnComponentEnterState(default, msocstate.Modal, msoccontext.Mine, 0, null, 0); 239manager.OnComponentEnterState(default, msocstate.Modal, default, 0, null, 0); 242manager.OnComponentEnterState(default, msocstate.Recording, default, 0, null, 0);