private void SetBreakpointValues(ResizableOption value, params Breakpoint[] breakpoints) { foreach (var breakpoint in breakpoints) { this.breakpointDictionary[breakpoint] = value; } }
/// <summary> /// Initializes a new instance of the <see cref="FluentResizable"/> class. /// </summary> /// <param name="initialValue">The initial <see cref="ResizableOption"/> across all media query breakpoints.</param> public FluentResizable(ResizableOption initialValue) { this.breakpointDictionary.Add(Breakpoint.Mobile, initialValue); this.breakpointDictionary.Add(Breakpoint.Tablet, initialValue); this.breakpointDictionary.Add(Breakpoint.Desktop, initialValue); this.breakpointDictionary.Add(Breakpoint.Widescreen, initialValue); this.breakpointDictionary.Add(Breakpoint.FullHD, initialValue); }
/// <inheritdoc/> public IFluentResizable OnMobileAndLarger(ResizableOption option) { this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop, Breakpoint.Widescreen, Breakpoint.FullHD); return(this); }
/// <inheritdoc/> public IFluentResizable OnMobile(ResizableOption option) { this.breakpointDictionary[Breakpoint.Mobile] = option; return(this); }
/// <inheritdoc/> public IFluentResizable OnFullHD(ResizableOption option) { this.breakpointDictionary[Breakpoint.FullHD] = option; return(this); }
/// <inheritdoc/> public IFluentResizable OnDesktopAndSmaller(ResizableOption option) { this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop); return(this); }
/// <inheritdoc/> public IFluentResizable OnDesktop(ResizableOption option) { this.SetBreakpointValues(option, Breakpoint.Desktop); return(this); }
/// <inheritdoc/> public IFluentResizable OnWidescreenAndLarger(ResizableOption option) { this.SetBreakpointValues(option, Breakpoint.Widescreen, Breakpoint.FullHD); return(this); }
/// <inheritdoc/> public IFluentResizable OnWidescreen(ResizableOption option) { this.breakpointDictionary[Breakpoint.Widescreen] = option; return(this); }
/// <inheritdoc/> public IFluentResizable OnTablet(ResizableOption option) { this.breakpointDictionary[Breakpoint.Tablet] = option; return(this); }