[NUI] Change GetDefaultWindow() to static func (#900)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / IPlatform.cs
1 using System.ComponentModel;
2
3 namespace Tizen.NUI.Binding
4 {
5     /// <summary>
6     /// For internal use.
7     /// </summary>
8     [EditorBrowsable(EditorBrowsableState.Never)]
9     internal interface IPlatform
10     {
11         /// <summary>
12         /// Returns the native size.
13         /// </summary>
14         /// <param name="view">The view</param>
15         /// <param name="widthConstraint">The width constraint.</param>
16         /// <param name="heightConstraint">The height constraint.</param>
17         /// <returns>The native size.</returns>
18         SizeRequest GetNativeSize(BaseHandle view, double widthConstraint, double heightConstraint);
19     }
20 }