You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My alternative was to create a local partial override class, however the XAML doesn't look very pretty:
public partial class ResponsiveGridEx : ResponsiveGrid {
public ResponsiveGridEx() : base()
{
// Set the new breakpoints here
this.BreakPoints.XS_SM = (double)200;
this.BreakPoints.SM_MD = (double)400;
this.BreakPoints.MD_LG = (double)600;
}
}
However, the only issue with this is the XAML doesn't look very pretty as it has a namespace for local intermixed with the ge namespace
Hi there,
Is there an easy way that I am missing that could globally set the breakpoints (XS_SM, SM_MD, MD_LG) to different values?
The following code works, however, then I have to manually add the breakpoints to the XAML every time I use the ResponsiveGrid element.
My alternative was to create a local partial override class, however the XAML doesn't look very pretty:
However, the only issue with this is the XAML doesn't look very pretty as it has a namespace for local intermixed with the ge namespace
The text was updated successfully, but these errors were encountered: