37 references to STATE_VISIBLE
System.Windows.Forms (37)
winforms\Managed\System\WinForms\AxHost.cs (7)
616
else if (f.Visible && !GetState(
STATE_VISIBLE
) && IsHandleCreated && GetOcState() >= OC_INPLACE) {
1436
SetState(
STATE_VISIBLE
, false);
1889
if (GetState(
STATE_VISIBLE
) != value) {
1930
SetState(
STATE_VISIBLE
, value);
3505
bool visible = GetState(
STATE_VISIBLE
);
3510
if (visible != GetState(
STATE_VISIBLE
)) {
3511
SetState(
STATE_VISIBLE
, visible);
winforms\Managed\System\WinForms\Control.cs (18)
501
state =
STATE_VISIBLE
| STATE_ENABLED | STATE_TABSTOP | STATE_CAUSESVALIDATION;
1890
if ((state &
STATE_VISIBLE
) != 0) cp.Style |= NativeMethods.WS_VISIBLE;
6652
if (!GetState(
STATE_VISIBLE
))
8471
if (GetState(
STATE_VISIBLE
)) {
8478
if (GetState(
STATE_VISIBLE
)) {
12140
SetState(
STATE_VISIBLE
, value);
12154
SetState(
STATE_VISIBLE
, !value);
12159
SetState(
STATE_VISIBLE
, value);
12179
if (!GetState(
STATE_VISIBLE
) && !value && IsHandleCreated) {
12189
SetState(
STATE_VISIBLE
, value);
12306
return (!GetState(
STATE_VISIBLE
));
12744
if ((state &
STATE_VISIBLE
) != 0){
13316
SetState(
STATE_VISIBLE
, false);
13936
bool oldVisibleBit = GetState(
STATE_VISIBLE
);
13937
SetState(
STATE_VISIBLE
, true);
13948
SetState(
STATE_VISIBLE
, oldVisibleBit);
13965
SetState(
STATE_VISIBLE
, false);
14479
get { return GetState(
STATE_VISIBLE
); }
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
17293
if (GetState(
STATE_VISIBLE
))
winforms\Managed\System\WinForms\Form.cs (5)
319
SetState(
STATE_VISIBLE
, false);
1907
bool oldVisibleBit = GetState(
STATE_VISIBLE
);
2696
SetState(
STATE_VISIBLE
, false);
2704
SetState(
STATE_VISIBLE
, true);
4387
return GetState(
STATE_VISIBLE
) && IsHandleCreated;
winforms\Managed\System\WinForms\ScrollableControl.cs (2)
471
if (current != null && current.GetState(
STATE_VISIBLE
)) {
520
if (current != null && current.GetState(
STATE_VISIBLE
)) {
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4789
get { return GetState(
STATE_VISIBLE
);}
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
1306
SetState(
STATE_VISIBLE
, false);
winforms\Managed\System\WinForms\ToolStripOverflow.cs (1)
88
get { return GetState(
STATE_VISIBLE
); }
winforms\Managed\System\WinForms\UserControl.cs (1)
50
SetState(
STATE_VISIBLE
, true);