Exemplo n.º 1
0
 private void SetBreakpointValues(ResizableOption value, params Breakpoint[] breakpoints)
 {
     foreach (var breakpoint in breakpoints)
     {
         this.breakpointDictionary[breakpoint] = value;
     }
 }
Exemplo n.º 2
0
 /// <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);
 }
Exemplo n.º 3
0
 /// <inheritdoc/>
 public IFluentResizable OnMobileAndLarger(ResizableOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop, Breakpoint.Widescreen, Breakpoint.FullHD);
     return(this);
 }
Exemplo n.º 4
0
 /// <inheritdoc/>
 public IFluentResizable OnMobile(ResizableOption option)
 {
     this.breakpointDictionary[Breakpoint.Mobile] = option;
     return(this);
 }
Exemplo n.º 5
0
 /// <inheritdoc/>
 public IFluentResizable OnFullHD(ResizableOption option)
 {
     this.breakpointDictionary[Breakpoint.FullHD] = option;
     return(this);
 }
Exemplo n.º 6
0
 /// <inheritdoc/>
 public IFluentResizable OnDesktopAndSmaller(ResizableOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop);
     return(this);
 }
Exemplo n.º 7
0
 /// <inheritdoc/>
 public IFluentResizable OnDesktop(ResizableOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Desktop);
     return(this);
 }
Exemplo n.º 8
0
 /// <inheritdoc/>
 public IFluentResizable OnWidescreenAndLarger(ResizableOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Widescreen, Breakpoint.FullHD);
     return(this);
 }
Exemplo n.º 9
0
 /// <inheritdoc/>
 public IFluentResizable OnWidescreen(ResizableOption option)
 {
     this.breakpointDictionary[Breakpoint.Widescreen] = option;
     return(this);
 }
Exemplo n.º 10
0
 /// <inheritdoc/>
 public IFluentResizable OnTablet(ResizableOption option)
 {
     this.breakpointDictionary[Breakpoint.Tablet] = option;
     return(this);
 }