public void UpdateStatus(Rainmeter.API rm = null) { if (rm != null) { this._SkinName = rm.GetSkinName(); this._Handle = rm.GetSkinWindow(); } RECT rct; if (GetWindowRect(this._Handle, out rct)) { this._X = rct.Left; this._Y = rct.Top; this._W = rct.Right - rct.Left; this._H = rct.Bottom - rct.Top; } else { rm.Log(API.LogType.Error, "Rainmeter told us the HWND for window '" + this._SkinName + "' is " + this._Handle.ToInt32().ToString() + "L, but couldn't receive a proper RECT from it"); } this._IsTopmost = ((GetWindowLong(this._Handle, GWL_EXSTYLE) & WS_EX_TOPMOST) > 0); }