Hello,
I'm using the RadImageEditor control in a WPF application using the Office2013 theme.
With ScaleFactor at 0, there is a margin around the image and it is not aligned with the orther controls.
With another scale factor, the scroll bars are out by one pixel: the top of the image is one pixel lower than the vertical scroll bar and the left of the image is one pixel at the right of the horizontal scroll bar.
DocumentPosition pos = new DocumentPosition(this.radRichTextBox.Document.CaretPosition); pos.MoveToCurrentWordStart();this.radRichTextBox.Document.Selection.SetSelectionStart(pos); pos.MoveToCurrentWordEnd();this.radRichTextBox.Document.Selection.AddSelectionEnd(pos);

Hi guys, my project is C# language, and WPF architecture.
I am having the issue of loading the page of the Richtextbox which take around 15 seconds to completely load the page. So, I insert the code as follow(picture is attached in this post): RadCompositionInitializer.Catalog = new TypeCatalog(typeof(HtmlFormatProvider), typeof(TxtFormatProvider),typeof()Hyperlink),typeof(IInsertHyperlinkDialog));
The page taken around 4 seconds to load and eventually solve my problem, but whenever I click the hyperlink button, the hyperlink dialog didnt show up. While the other function like font size, insert picture dialog, bold..italy... all is working well except the hyperlink dialog.
If I erase the new added code , the hyperlink dialog will prompt up but it took about 15 seconds again to load the entire page(background main page as the picture attached).
Quality Assurance reject my work as it took too long to load the page.
May I know how to prompt up the hyperlink dialog and also used less time to load the entire page?
Thanks.

Hello there,
I got a little problem Binding MinHeight and Height of DragResizeSlotHighlightContainer to a Property of a GanttTask.
So for the EventContainer everything works fine, I solved it this way:
<Style TargetType="telerik:EventContainer" BasedOn="{StaticResource EventContainerStyle}"> <Setter Property="Background" Value="{Binding OriginalEvent.Background}"/> <Setter Property="MinHeight" Value="{Binding OriginalEvent.Height}"/> <Setter Property="Height" Value="{Binding OriginalEvent.Height}"/></Style>But for DragResizeSlotHighlightContainer it doesn't work getting OriginalEvent.Height to set MinHeight...
<Style TargetType="telerik:DragResizeSlotHighlightContainer" BasedOn="{StaticResource DragResizeSlotHighlightContainerStyle}"> <Setter Property="MinHeight" Value="{Binding OriginalEvent.Height}"/></Style>
Hi,
I add some ribbon tabs to my project and give them access text.
the key tool tips aren't in right place.
note :
my radribbonview has right to left flow direction.
i attach a picture and a project to show my problem.
thanks.
Hello!
I have a question about the RadContextMenu. I created my class DataGridView so this class inherited from RadGridView. If I add contextMenu with RadContextMenu.SetContextMenu(this, contextMenu) can't add new contextMenu. Look this:
public class DataGridView : RadGridView
{
public DataGridView()
{
// create menu
var contextMenu = new RadContextMenu();
RadMenuItem item = new RadMenuItem();
item.Header = "Hello";
contextMenu.Items.Add(item);
contextMenu.Opened += ContextMenu_Opened;
//add something that we can use to get the data grid on context menu events
contextMenu.ItemClick += ContextMenu_ItemClick;
contextMenu.Opening += ContextMenu_Opening;
// set menu Theme
StyleManager.SetTheme(contextMenu, StyleManager.GetTheme(this));
RadContextMenu.SetContextMenu(this, contextMenu);
}
}