blob: 9b9f04bbc25d6bad1cf6560315e5668816d94ef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Tango.FSE.Common.Resolution
{
public interface IResolutionService
{
event EventHandler<ResolutionMode> ResolutionModeChanged;
event EventHandler<SizeChangedEventArgs> ResolutionChanged;
ResolutionMode Resolution { get; }
bool IsLowResolution { get; }
bool IsHighResolution { get; }
double ResolutionWidth { get; }
double ResolutionHeight { get; }
}
}
|