File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed
Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -171,15 +171,26 @@ The result looks like this:
171171# API Details
172172
173173``` c# (but really MIDL3)
174+ [contract (Microsoft .UI .Xaml .WinUIContract , )]
175+ [webhosthidden ]
174176namespace Microsoft .UI .Xaml .Controls
175177{
176- runtimeclass WrapPanel
178+ unsealed runtimeclass WrapPanel
179+ : Microsoft.UI.Xaml.Controls.Panel
177180 {
178- double HorizontalSpacing { get; set; }
179- Orientation Orientation { get ; set ; }
180- Thickness Padding { get ; set ; }
181- StretchChild StretchChild { get ; set ; }
182- double VerticalSpacing { get ; set ; }
181+ [method _name (" CreateInstance" )] WrapPanel();
182+
183+ Double HorizontalSpacing;
184+ Orientation Orientation;
185+ Thickness Padding;
186+ StretchChild StretchChild;
187+ Double VerticalSpacing;
188+
189+ static Microsoft.UI.Xaml.DependencyProperty HorizontalSpacingProperty { get; };
190+ static Microsoft .UI .Xaml .DependencyProperty OrientationProperty { get ; };
191+ static Microsoft .UI .Xaml .DependencyProperty PaddingProperty { get ; };
192+ static Microsoft .UI .Xaml .DependencyProperty StretchChildProperty { get ; };
193+ static Microsoft .UI .Xaml .DependencyProperty VerticalSpacingProperty { get ; };
183194 }
184195
185196 enum StretchChild
You can’t perform that action at this time.
0 commit comments