Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows desktop devices.
3,032 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I use SetTitleBar
to set myview.
SetTitleBar(myview)
and in Myview there is Image
<Grid HeightRequest ="50">
<Image Source="back.png" />
</Grid>
but it seems overlapped some color like rgba(0,0,0,0.3)
not that bright. I want to remove the color make it high brightness.
I think it is because of Opacity. You can change it in App.xaml, in <ResourceDictionary>, like :
<SolidColorBrush x:Key="WindowCaptionBackground" Color="White" Opacity="0"/>