March 2016
Intermediate to advanced
550 pages
10h 57m
English
XAML can be used to create:
Although Silverlight is still supported by Microsoft, it is not being actively developed, so it should be avoided.
XAML simplifies C# code, especially when building a user interface.
Imagine that you need two or more buttons laid out horizontally to create a toolbar. In C#, you would write this code:
var toolbar = new StackPanel(); toolbar.Orientation = Orientation.Horizontal; var newButton = new Button(); newButton.Content = "New"; newButton.Background ...
Read now
Unlock full access