mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
460 B
C#
18 lines
460 B
C#
|
using MahApps.Metro.Controls;
|
|||
|
using Wabbajack.Lib;
|
|||
|
|
|||
|
namespace Wabbajack.Util
|
|||
|
{
|
|||
|
public static class SystemParametersConstructor
|
|||
|
{
|
|||
|
public static SystemParameters Create()
|
|||
|
{
|
|||
|
return new SystemParameters
|
|||
|
{
|
|||
|
ScreenWidth = (int)System.Windows.SystemParameters.PrimaryScreenWidth,
|
|||
|
ScreenHeight = (int)System.Windows.SystemParameters.PrimaryScreenHeight
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|