Monday, May 14, 2018

How to prevent little black boxes not to be displayed in Simulator.

Disable Visual Studio  extra debug option
Try unchecking this option:
Tools > Options > Debugging > General > Enable UI Debugging Tools for XAML > Show runtime tools in the application

This will help in getting good screenshots because the little black boxes are displayed in Simulator.

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...