Ejemplo n.º 1
0
 private void SetBreakpointValues(WrapOption value, params Breakpoint[] breakpoints)
 {
     foreach (var breakpoint in breakpoints)
     {
         this.breakpointDictionary[breakpoint] = value;
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FluentWrap"/> class.
 /// </summary>
 /// <param name="initialValue">The initial value across all CSS media queries.</param>
 public FluentWrap(WrapOption 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);
 }
Ejemplo n.º 3
0
 /// <inheritdoc/>
 public IFluentWrap OnMobileAndLarger(WrapOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop, Breakpoint.Widescreen, Breakpoint.FullHD);
     return(this);
 }
Ejemplo n.º 4
0
 /// <inheritdoc/>
 public IFluentWrap OnMobile(WrapOption option)
 {
     this.breakpointDictionary[Breakpoint.Mobile] = option;
     return(this);
 }
Ejemplo n.º 5
0
 /// <inheritdoc/>
 public IFluentWrap OnFullHD(WrapOption option)
 {
     this.breakpointDictionary[Breakpoint.FullHD] = option;
     return(this);
 }
Ejemplo n.º 6
0
 /// <inheritdoc/>
 public IFluentWrap OnDesktopAndSmaller(WrapOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop);
     return(this);
 }
Ejemplo n.º 7
0
 /// <inheritdoc/>
 public IFluentWrap OnDesktop(WrapOption option)
 {
     this.breakpointDictionary[Breakpoint.Desktop] = option;
     return(this);
 }
Ejemplo n.º 8
0
 /// <inheritdoc/>
 public IFluentWrap OnWidescreenAndLarger(WrapOption option)
 {
     this.SetBreakpointValues(option, Breakpoint.Widescreen, Breakpoint.FullHD);
     return(this);
 }
Ejemplo n.º 9
0
 /// <inheritdoc/>
 public IFluentWrap OnWidescreen(WrapOption option)
 {
     this.breakpointDictionary[Breakpoint.Widescreen] = option;
     return(this);
 }
Ejemplo n.º 10
0
 /// <inheritdoc/>
 public IFluentWrap OnTablet(WrapOption option)
 {
     this.breakpointDictionary[Breakpoint.Tablet] = option;
     return(this);
 }