diff --git a/Photino.NET/PhotinoWindow.NET.cs b/Photino.NET/PhotinoWindow.NET.cs
index 3438463..6ee7035 100644
--- a/Photino.NET/PhotinoWindow.NET.cs
+++ b/Photino.NET/PhotinoWindow.NET.cs
@@ -229,7 +229,7 @@ namespace PhotinoNET
}
}
- ///Gets or Sets whether the native browser control grants all requests for access to local resources (camera, microphone, etc.) Default is true.
+ ///Gets or Sets whether the native browser control grants all requests for access to local resources (camera, microphone, etc.) Default is true. Not functional on Linux or macOS.
public bool GrantBrowserPermissions
{
get
@@ -534,7 +534,7 @@ namespace PhotinoNET
}
///Gets or sets whehter the native window is always at the top of the z-order. Default is false.
- public bool TopMost
+ public bool Topmost
{
get
{
@@ -547,7 +547,7 @@ namespace PhotinoNET
}
set
{
- if (TopMost != value)
+ if (Topmost != value)
{
if (_nativeInstance == IntPtr.Zero)
_startupParameters.Topmost = value;
@@ -595,7 +595,7 @@ namespace PhotinoNET
}
}
- ///Gets or set the event for WebMessageReceived. Set assigns a new handler to the event.
+ ///Gets or set handlers for WebMessageReceived event. Set assigns a new handler to the event.
public EventHandler WebMessageReceivedHandler
{
get
@@ -620,7 +620,7 @@ namespace PhotinoNET
}
}
- ///Gets or set the event for WindowClosing. Set assigns a new handler to the event.
+ ///Gets or set the handlers for WindowClosing event. Set assigns a new handler to the event.
public NetClosingDelegate WindowClosingHandler
{
get
@@ -633,7 +633,7 @@ namespace PhotinoNET
}
}
- ///Gets or set the event for WindowCreating. Set assigns a new handler to the event.
+ ///Gets or set handlers for WindowCreating event. Set assigns a new handler to the event.
public EventHandler WindowCreatingHandler
{
get
@@ -646,7 +646,7 @@ namespace PhotinoNET
}
}
- ///Gets or set the event for WindowCreated. Set assigns a new handler to the event.
+ ///Gets or set handlers for WindowCreated event. Set assigns a new handler to the event.
public EventHandler WindowCreatedHandler
{
get
@@ -659,7 +659,7 @@ namespace PhotinoNET
}
}
- ///Gets or set the event for WindowLocationChanged. Set assigns a new handler to the event.
+ ///Gets or set handlers for WindowLocationChanged event. Set assigns a new handler to the event.
public EventHandler WindowLocationChangedHandler
{
get
@@ -672,7 +672,7 @@ namespace PhotinoNET
}
}
- ///Gets or set the event for WindowSizeChanged. Set assigns a new handler to the event.
+ ///Gets or set handlers for WindowSizeChanged event. Set assigns a new handler to the event.
public EventHandler WindowSizeChangedHandler
{
get
@@ -1058,7 +1058,7 @@ namespace PhotinoNET
public PhotinoWindow SetTopMost(bool topMost)
{
Log($".SetTopMost({topMost})");
- TopMost = topMost;
+ Topmost = topMost;
return this;
}