using System.Drawing; namespace hKursu.Controls { public interface IShadowLabel { byte Alpha { get; set; } Color ShadowColor { get; set; } int xOffset { get; set; } int yOffset { get; set; } } }