
I was wondering how the Treeview actually extracts the icons from the icon file? Probably me geeting too old LOL!!. Is it using pixel positions?
What I was trying to do is modify the Treeview so that links to files are embedded correctly (i.e. one level in from the parent.). It seemed easy to just make it a new level (that works!!). But then I would need to use an alternate set of icons. For example, replace the folder icon with a "- " graphic and then set the other two graphics to blanks.
But perhaps their is a better approach. (see attached screenshot)
BTW … just in case I can convince my boss of really doing something using this … are you available for a small project?
Hi,
I need to retrieve the recurrence pattern and set it to our custom object. I tried various methods. In all these cases, I am not able to retrieve DaysOfWeekMask which holds values like "Sunday" or "Monday|Tuesday|Wednesday" and cast it to our custom object DaysOfWeek which is also an enum.
1st Method
a) RecurrenceDays days = new RecurrenceDays();
days = days.AddDay(CurrentCreatedAppointment.RecurrenceRule.Pattern.DaysOfWeekMask);
var s = days.GetDaysOfWeek().Select(x => (DaysOfWeek)Enum.Parse(typeof(DaysOfWeek), x.ToString())).AsEnumerable();
viewModel.BackupArchiveSettings.ByDay = new ObservableCollection<DaysOfWeek>( s);
var k = s.GetEnumerator();
var k1 = k.Current;
2nd Method
RecurrenceDays days = new RecurrenceDays();
days = days.AddDay(CurrentCreatedAppointment.RecurrenceRule.Pattern.DaysOfWeekMask);
var s = days.GetDaysOfWeek().Select(x => (DaysOfWeek)Enum.Parse(typeof(DaysOfWeek), x.ToString())).AsEnumerable();
newcol = new ObservableCollection<DaysOfWeek>();
foreach (var item in s.ToList())
{
viewModel.BackupArchiveSettings.ByDay.Add(item);
}
Please help
Thanks,
Divya


The Situation when I will drop and add a shape. before added shape drawing on the diagram, I want to execute Diagram.Align() method with all shapes.
In Detail, I will drop and add ContainerShape into another ContainerShape.
Another ContainerShape has a child, a shape.
After Dropped and Added, I try to Align ContainerShape's Childrens when Other ContainerShape calls "OnItemsCollectionChanged"
but, if i try to Align with dropped shape. it occurs to Empty Rect Error.
"Empty Rect cannot modify this property"
e.StackTrace " location: System.Windows.Rect.set_X(Double value)\r\n location: Telerik.Windows.Diagrams.Core.GraphController.AlignShape(IShape shape, Point oldPosition, Point alignedPosition, Alignment alignment)\r\n location: Telerik.Windows.Diagrams.Core.GraphController.AlignShapes(Alignment alignment, IEnumerable`1 shapes)\r\n location: CloudRPA.Views.Diagram.DiagramContainerShape.ReArrangedItem(Boolean isAdd)"

Hi guys,
I'm trying to capture the print event of a RadPDFViewer to not only print the PDF but also save it to a predifined location everytime it is printed.
Ithought about the Click event in the toolbar, but I also need to capture it if printed from contextmenu.
I have read something about inherit the print command, but I haven't gotten how to do that.
Greetings,
Benedikt

Hi,
i need to save the content of the radrichtextbox as an image, i didn't find any method to implement this.
thanks in advance.
<telerik:RadComboBox IsEditable="True" IsTextSearchCaseSensitive="False" Text="{Binding SchoolEducation}" ItemsSource="{Binding SchoolEducations}" />
Hi,
since Release 2020.1.218 the TextProperty-Binding does not refresh my property in my ViewModel.
I also tried the current internal version.
Best regards,
Ronny Glass