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.
I'm getting the following Warning, preceded by a Stack Overflow Exception whenever I click on any of the items in my TreeView, which is inside a DropDownButton.
System.Windows.Media.Animation Warning: 6 : Unable to perform action because the specified Storyboard was never applied to this object for interactive control.; Action='Stop'; Storyboard='System.Windows.Media.Animation.Storyboard'; Storyboard.HashCode='55034768'; Storyboard.Type='System.Windows.Media.Animation.Storyboard'; TargetElement='System.Windows.Media.Animation.Storyboard'; TargetElement.HashCode='55034768'; TargetElement.Type='System.Windows.Media.Animation.Storyboard'
And my XAML:
<telerik:RadDropDownButton.DropDownContent>
<telerik:RadTreeView ItemsSource="{Binding ProjAreaPaths}"
SelectedItem="{Binding Path=AreaPath, Mode=TwoWay}"
ItemContainerStyle="{StaticResource RedStyle}">
<telerik:RadTreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding ChildNodes}"
ItemContainerStyle="{StaticResource GreenStyle}">
<TextBlock Text="{Binding Name}"/>
</HierarchicalDataTemplate>
</telerik:RadTreeView.ItemTemplate>
</telerik:RadTreeView>
</telerik:RadDropDownButton.DropDownContent>
</telerik:RadDropDownButton>
Hi;
I'm currently overriding the labeldefinition property in ChartSeries with a template. So if I change the value of this property for the first time it will not be updated(shown). Unless I close the view and reopen it again, Then it will be Triggered and updated normally. is It a Telerik bug? and how to make it updated correctly
Thanks :)
Hello,
I have a RadGridView and I would like that the details for one row to be opened on double clicking on them and that several rows could be open on the same time.
Here is a sample of code :
<telerik:RadGridView x:Name="rdGrid"
ShowGroupPanel="False"
SnapsToDevicePixels="True"
BorderThickness="0"
RowDetailsVisibilityMode="VisibleWhenSelected"
RowDetailsStyle="{StaticResource simpleRowDetailsStyle}"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ItemsSource="{Binding CompartmentsAnalysis, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
AutoGenerateColumns="False"
SelectedItem="{Binding Path=SelectedCompartmentAnalysis, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, NotifyOnSourceUpdated=True, NotifyOnTargetUpdated=True}">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Name"
DataMemberBinding="{Binding xxxx.Name, IsAsync=True}"
IsReadOnly="True"
Width="*" />
</telerik:RadGridView.Columns>
</telerik:RadGridView>
Hi, I hava a diagram, and want to export. The code is as follows:
FileStream fs = File.Open("D:\\a.png", FileMode.Create);
pair.Diagram.Zoom = 1;
pair.Diagram.ExportToImage(fs, null, new Rect(minX, minY, ww, hh));
fs.Close();
Now, the problem is that the exported image a.png is clear in my notebook PC(Screen resolution:1366*768). But it is fuzzy in my friend's(Screen resolution:1920*1080) by using the same code.
Why? Hope answer, thanks.