This question is locked. New answers and comments are not allowed.
Hello,
Looking at your demos, I can't see the way the h&W are binded to the Diagram.Graphpaper et.c
any thought/help
Thanks
Rick
Looking at the code behind I see the Valuechanged Events, but both have the same results.
Looking at your demos, I can't see the way the h&W are binded to the Diagram.Graphpaper et.c
private void widthspin_ValueChanged(object sender, RadRangeBaseValueChangedEventArgs e) { if (DiaGrid != null && widthspin != null && widthspin.Value.HasValue) GraphPaper.SetCellSize(DiaGrid, new Size(widthspin.Value.Value, widthspin.Value.Value)); } private void htspin_ValueChanged(object sender, RadRangeBaseValueChangedEventArgs e) { if (DiaGrid != null && htspin != null && htspin.Value.HasValue) GraphPaper.SetCellSize(DiaGrid, new Size(htspin.Value.Value, htspin.Value.Value)); }Thanks
Rick
Looking at the code behind I see the Valuechanged Events, but both have the same results.