BitmapIconSource.ShowAsMonochrome Property

Definition

Gets or sets a value that indicates whether the bitmap is shown in a single color.

Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.BitmapIconSource.ShowAsMonochrome (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

public:
 property bool ShowAsMonochrome { bool get(); void set(bool value); };
bool ShowAsMonochrome();

void ShowAsMonochrome(bool value);
public bool ShowAsMonochrome { get; set; }
var boolean = bitmapIconSource.showAsMonochrome;
bitmapIconSource.showAsMonochrome = boolean;
Public Property ShowAsMonochrome As Boolean
<BitmapIconSource ShowAsMonochrome="bool"/>

Property Value

Boolean

bool

true to show the bitmap in a single color; false to show the bitmap in full color. The default is true.

Applies to