Skip to content

Commit 2a74aae

Browse files
Apply all IDL comments for API details from initial review before API review meeting
1 parent 79800c9 commit 2a74aae

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

specs/WCT/Primitives/WrapPanel.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff 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]
174176
namespace 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

0 commit comments

Comments
 (0)