Monday, July 11, 2011

WPF- Margin and Padding

The Margin and Padding properties can be used to reserve some space around of within the control.

•The Margin is the extra space around the control.
•The Padding is extra space inside the control.
•The Padding of an outer control is the Margin of an inner control.

No comments:

Post a Comment

Open default email app in .NET MAUI

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