mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-06 07:56:06 +02:00
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:
+1
-1
@@ -220,7 +220,7 @@
|
||||
Value="True">
|
||||
<Setter TargetName="ContentRow"
|
||||
Property="Height"
|
||||
Value="{Binding DesiredHeight, ElementName=Content}" />
|
||||
Value="{Binding Height, ElementName=Content}" />
|
||||
</Trigger>
|
||||
</ControlTemplate.Triggers>
|
||||
</ControlTemplate>
|
||||
|
||||
+2
-2
@@ -49,10 +49,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 Border as the Content of the Parent Window Object
|
||||
// Add the ScrollViewer as the Content of the parent Window object
|
||||
mainWindow.Content = myScrollViewer;
|
||||
mainWindow.Show ();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user