Hi,
I'm in a need for a dialog form that in the end returns a FilePath OR a DirectoryPath, with a TextBox that the user can paste something (file or directory).
I tried doing so with a System.Windows.Forms.FolderBrowserDialog but without success.
I'm turning over Telerik, found the RadBrowseEditor and calling the RadBrowseEditor .BrowseElement.BrowseButton.PerformClick() method for opening.
The best/closest DialogType is BrowseEditorDialogType.OpenFileDialog, but the problem is when pasting a DirectoryPath, the control navigates there and no event is raised (same as the system's FolderBrowserDialog, it's even the same used from Telerik).
I tried listening to events ValueChanging and also all those under the BrowseElement object, but nothing works.
Any idea (I didn't want to create a new form, developping the navigation treeview, textbox, since almost everyhing is there)?
thanks

Hi,
I would like to add a secondary x-axis to my chart (having relative instead of absolute values) without a belonging data series. But I have problems to get this axis shown. With the following code, the axis is simlpy not shown:
// Secondary x-axis with percent values of current price LinearAxis horAx2 = new LinearAxis(); horAx2.VerticalLocation = AxisVerticalLocation.Bottom; horAx2.Minimum = Math.Round(_minX / ulPrice, 4); horAx2.Maximum = Math.Round(_maxX / ulPrice, 4); horAx2.MajorStep = Math.Round(ulPrice * 0.03 / ulPrice, 4); // 0.05; // 1 Prozent gerundet //Convert.ToInt16(units)*10; horAx2.Font = new System.Drawing.Font("Ubuntu", 10F, System.Drawing.FontStyle.Bold);
Is it possible to a secondary axis without a complementay data series?
Thank you



I trying out the UI for winforms. I seem to get pixelated text in the radlabel. What do I need to do to fix it?


Let's say I want to give my user the ability to select some text and convert it to some other text, for instance to mangle it with ROT13 cipher. And selection could be made of several ranges, including in table cells. How would I go about this? My first idea was something like the code below, but some kind of update is required, because I only see the change if I scroll the text out view and back in, and even then the changed text does not reflow, but it continues after the right margin. Also, ability to undo the changes would be nice.
foreach (var inlineLayoutBox in radRichTextEditor1.Document.Selection.GetSelectedBoxes()){ if (inlineLayoutBox.Text.Contains('e')) inlineLayoutBox.Text = inlineLayoutBox.Text.Replace("e", "3333333");}

this.FormElement.TitleBar.Visibility = ElementVisibility.Collapsed; in the form load, but it shows an empty area initially until a resize or refersh.
