Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/WinUIEx/WindowManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ private static bool TryGetWindowManager(Window window, [MaybeNullWhen(false)] ou
return false;
}

public string NewStringProperty { get; set; }
public void NewMethod() { }

/// <summary>
/// Gets (or creates) a window manager for the specific window.
/// </summary>
Expand Down Expand Up @@ -623,8 +626,14 @@ public Microsoft.UI.Windowing.AppWindowPresenterKind PresenterKind
/// <summary>
/// Raised if the Z order of the window changes.
/// </summary>
public event EventHandler<ZOrderInfo>? ZOrderChanged;
internal event EventHandler<ZOrderInfo>? ZOrderChanged;

}

public class NewClass
{
public NewClass(string name) { Name = name; }
public string Name { get; }
}

/// <summary>
Expand Down
Loading