Hello All,
I'm trying the tabcontrol for the first time, and am very curious as to do I create a new view/viewmodel pair for each tab or handle everything in the first pair where the overall top tabcontrol is based??? I think that I would like to have separate ones for ease in development but I haven't figured out as to how to assign them to the tab items... Or is it just better to have in all in one?
What am I missing?
Any help would be greatly appreciated,
Thanks in advance,
Kevin Orcutt
Hi,
Simple question, how can I subscribe to MailMergeCommand so that I can find out where the file is being saved.
void radRichTextBox_CommandExecuted(object sender, CommandExecutedEventArgs e)
{
if (e.Command is MailMergeCommand)
{
// File Dialog FilePath Location Code
}
}
void radRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
if (e.Command is MailMergeCommand)
{
}
}
Has there been any work on touch support for the Chart control? I found this old post that mentioned support being worked on in 2012 Q2.
The features we want to implement are:
I could not find anything in the API documentation, could you give me any pointers as to how to implement this?
Hello !
I would like Drag and Drop between two RadGridView in MVVM Light.
I read many articles and many examples but I have difficulty to use DragDropManager.
I didn't found an example like my project (it isn't in MVVM or it use RadDragAndDrop, ...).
Somebody can help me please ?
Thank you !
Best regards,
Grosel
When using a property grid, I have a DataTemplateSelector for properties that require my custom control to edit. Upon initializing my control, I need a view model set, so I use AutoBindBehavior.UpdateBindingOnElementLoaded for that purpose. Several times I have renamed a convenience setter for a property in my view model without renaming the corresponding dependency property, thus I was violating convention but nothing else. Each time I did that, I would get a null reference exception. I spent many hours trying to figure out what I did wrong.
I would be SOOO helpful if the exception in this case said "unable to find dependency property X" I would've know exactly what I did wrong...
Hello,
After upgrading your components to version 2016.3.1024.40 (from version 2016.1.217.40 - I had no problems in that version), I'm unable to drop data on TextBox (regular WPF control).
In my scenario I need to drag some data from RadGridView to TextBox (which is acting as simple script box).
Could you help?
Best regards,
Hi,
I have a scenario where internet access is completely limited for security reasons, so ...
Does RadMap have the ability to load maps from a pc location or network location completely disconnected from intenet?
Ie, the RadMap control lets you define a Provider to a map file of some sort? Some RAR map cache or similar format?
Thanks....
I would like to know if there is a way to change the color of an event's background when it is selected.
Currently I'm using the themes Visualstudio2013 for gantt view.
for example I set one GanttTask Event background to gray, however it will show blue when it is selected.
It seems that "EventContainerStyle" don't provide this property .
Regards,
-Jacky
I have large chart, so i zoom it to scroll.
I want to print it using something like Telerik.Windows.Media.Imaging.ExportExtensions.ExportToImage(chart, stream, new PngBitmapEncoder());
I wonder will it save only current zoomed part or all chart? Because i need all chart, not only zoomed part.