namespace BackgroundBuilder.Services { /// /// Defines methods for querying the Windows taskbar size and orientation. /// public interface ITaskbarService { /// Gets the current thickness (height if horizontal, width if vertical) of the taskbar in pixels. int GetTaskbarSize(); /// Returns true when the taskbar is horizontal, false when vertical. bool IsHorizontal(); } }