Fixes related to open issues. (#122)

* Update framework winforms landing

* Add note about attribute

* Adjust storyboard overview

* Fix comments in snippet

* Adjust table in getting started

* Add missing encoded char

* Fix bad desiredheight prop

* Fix blank column

* Fix description metadata

* Review feedback
This commit is contained in:
Andy De George
2020-11-13 11:51:10 -08:00
committed by GitHub
parent 5b0f87d944
commit a108fc2b98
9 changed files with 88 additions and 46 deletions
@@ -38,8 +38,10 @@ Namespace SDKSample
myStackPanel.Children.Add(myTextBlock)
myStackPanel.Children.Add(myRectangle)
'Add the StackPanel as the lone Child of the Border
'Add the StackPanel as the lone child of the ScrollViewer
myScrollViewer.Content = myStackPanel
'Add the ScrollViewer as the Content of the parent Window object
Me.Content = myScrollViewer
'</Snippet1>
End Sub