I tried hosting your WPF RichTextBox in a WinForms application and the Japanese IME doesn't work properly with it. I used the Microsoft IME and the characters start repeating themselves.
I am wanting to change the behavior of the Radial Menu Button. Instead of opening / closing the radial menu, I'd like it to do something else.
Is it possible to override the behavior of the central radial menu button on a radial menu?
when I batch delete links, the number is 2000, I use removelink method to remove the link from UI, but the efficiency is very low, the time is 67 seconds, if do not call the method the time is 2 seconds
why the removelink method is so low efficiency, and is any solution the raise batch delete links efficiency?
thank you !
Is it possible to save a RadRichTextBox RadDocument with IsTrackChangesEnabled so that it can be reloaded and the changes still be visible?
I need to save the document to a database (or file system) and then load it on a different PC/user later on for review.
I presume it needs to be Exported using a FormatProvider - but can't find any documentation detailing the steps.
Thanks
I wonder if it's possible. Please refer below picture.
Provide us the Editable WPF RadGridView GroupHeader text value example. So that we can rename the Group Header value by double click on header. Our grid view code is -
<telerik:RadGridView x:Name="Gridview" AutoGenerateColumns="False" ShowGroupPanel="False" ValidatesOnDataErrors="None"
AllowDrop="True" CanUserDeleteRows="True" CanUserInsertRows="True" CanUserSelect="True" CanUserSortGroups="True"
AutoExpandGroups="True" GroupRenderMode="Nested" ItemsSource="{Binding SelectedItems}"
SelectionMode="Extended">
<telerik:RadGridView.GroupHeaderTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox x:Name="grpCheckbox" IsThreeState="True">
<i:Interaction.Behaviors>
<behaviors:GroupSelectionBehavior/>
</i:Interaction.Behaviors>
</CheckBox>
<TextBlock Foreground="Black" Text="{Binding Group.Key}" FontWeight="Bold" ForceCursor="True"/>
</StackPanel>
</DataTemplate>
</telerik:RadGridView.GroupHeaderTemplate>
Dear Admin
I just have a RadGridView with two columns, and I have already set these column read-only to be 'True' , users are not allowed to do any change for these two columns' value. But if users would like to copy value in these two columns, how to implement such request? I tried to use Ctrl+C and no effct finally.
I'm trying to access some metada features of the image selected by user. I'm using following code to read metadata of the image once user selects it. However, it always returns null.
var metadata = ImageEditorUI.ImageEditor.Image.Bitmap.Metadata;
Does telerik imageEditor erases all metadata when loaded?
Dear Admin
Current project telerik library version is 2014.1.411.45, and I cannot use PercentComboBox control integrated with RadPdfViewer, in this case I tried to construct PercentComboBox class through decompiling latest telerik library and copying required codes as a simple testing. Everything looks well,but after running WPF application, the percentComboBox cannot appear as expected, and I checked the textBox value is null.
So how to make it work as same as demo shown?
Dear Admin
I would like to view pdf files with RadPdfViewer in RadDocumentPane.
The user control xaml is shown in attachment of "XAML OF USERCONTROL", and this is copied from telerik demo of "Thumbnails pdfviewer example".
I tried to new my user control and set binding in code-behind shown in attachment of "Set Content for RadDocumentPane".
And there was no content shown in pdfviewer.
Any help I do appreciate.