mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Add public PredefinedLayouts
This commit is contained in:
@@ -350,6 +350,15 @@ namespace Microsoft.Iris.Layouts
|
||||
return null;
|
||||
}
|
||||
|
||||
public bool Equals(ILayout other)
|
||||
{
|
||||
if (other is not AnchorLayout o) return false;
|
||||
|
||||
return DefaultChildAlignment == o.DefaultChildAlignment
|
||||
&& SizeToHorizontalChildren == o.SizeToHorizontalChildren
|
||||
&& SizeToVerticalChildren == o.SizeToVerticalChildren;
|
||||
}
|
||||
|
||||
internal static DataCookie InputData => s_dataProperty;
|
||||
|
||||
internal enum LayoutPhase
|
||||
|
||||
Reference in New Issue
Block a user