AppWindow.IsShownInSwitchers Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether this window will appear in various system representations, such as ALT+TAB and taskbar.
public:
property bool IsShownInSwitchers { bool get(); void set(bool value); };
bool IsShownInSwitchers();
void IsShownInSwitchers(bool value);
public bool IsShownInSwitchers { get; set; }
var boolean = appWindow.isShownInSwitchers;
appWindow.isShownInSwitchers = boolean;
Public Property IsShownInSwitchers As Boolean
Property Value
Boolean
bool
true
if this window will appear in various system representations, such as ALT+TAB and taskbar; otherwise, false
.