mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-05 23:42:58 +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:
+2
-2
@@ -55,10 +55,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();
|
||||
|
||||
|
||||
+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 ();
|
||||
|
||||
|
||||
+3
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user