
Is the attached image possible within Telerik WinForms?
We want a shadow effect on our top panel and a softer shadow effect on the right panel but we can't seem to get it working.
We tried using Shadows - Telerik Presentation Framework - Telerik UI for WinForms, and it does work when the panels aren't all docked but when we dock everything, the shadows are no longer visible.
We essentially want a panel with a Top dock style which we want a shadow under it, another panel docked to the right with a softer shadow to the left of it, and then a center panel which is docked with Fill (with all the relevant shadows appearing above this panel).
We're using Telerik 2020.1.113.40.
Any help is appreciated,
Thanks

Hi there,
I do have a RadPageView control on my form.
Each page in the RadPageView control contains a RadTreeView control.
I need to drag a node from one RadTreeView control to another.
How to?
Thank you
Hi,
How do I hide or disable WIN and ALT keys on a radVirtualKeyboard?
I'm using the Simplified keybordlayout.
Chris.
hello guys,
I am using Radscheduler to develop employee Timesheet program, I use codeless data binding (link below)
Codeless data binding - WinForms Scheduler Control - Telerik UI for WinForms
I am face with a data filter problem. Each employee is from different location (Employee Table have their own ID(primary key) ,location ID, StartTime, EndTime), so for each location when they use this app, I want they only can view their own timesheet.
So into my
private void Form_Load(object sender, EventArgs e)
{
this.tS_TimeSheetTableAdapter.Fill(this.XXX_XXDataSet.TS_TimeSheet);
}
How should I filter data by location ID before it fill the tableadapter?
Plz help me out.
Thanks,
Mike

private void radTextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (Char.IsLetterOrDigit(e.KeyChar) || (e.KeyChar == (char)(Keys.Back)) || e.KeyChar == (char)(Keys.Space))
e.Handled = false;
else
e.Handled = true;
}e.Handled = false;I need e.Handled to false in KeyPress event, and also I want clipboard shortcut keys to be worked perfectly.
i.e: CTRL + A | CTRL + X | CTRL + C | CTRL + V.
Please help me to resolve this issue.
I am looking to search many PDF's looking for a certain TEXT and saving the Page# of this text to db table.
While I did find this example on the Telerik Website, it does NOT compile for me.
using Telerik.Windows.Documents.Fixed.FormatProviders.Pdf;
int pageBegin = -1;
var provider = new PdfFormatProvider();
var document = provider.Import(File.ReadAllBytes(@"Test.pdf"));
var search = new TextSearch(document); // I get a compile error here stating TextSearch is inaccessible due to it's protection level.
var result = search.FindAll("Lorem", TextSearchOptions.Default);
foreach (var resultItem in result)
{
var rect = resultItem.GetWordBoundingRect();
var page = resultItem.GetResultPage();
pageBegin = page;
var editor = new FixedContentEditor(page);
//editor.DrawRectangle(rect);
}
File.WriteAllBytes(@"result.pdf", provider.Export(document));
return pageBegin;
I have a ScatterSeries within a RadChartView which is bound to a BindingList of x-y plot points.
When the BindingList updates, the points on the chart are re-plotted , but are being plotted in the middle of the chart, with a large amount of whitespace between the extreme values and the bounds of the chart. The Maximum and Minimum axes values are seemingly decided automatically and at random (if there is some logic to amount of the whitespace being applied, I cannot discern it).
I would like the leftmost plot ploint to be flush with the leftmost axis, the right most plot point to beflush with the right axis, etc. (i.e. I want the axes to be "tight" around the data).
I can do this manually for a known data set with the following code:
LinearAxis horizontalAxis = radChartView1.Axes.Get<LinearAxis>(0);
// or verticalAxis = series.VerticalAxis as LinearAxis;
horizontalAxis.Minimum = 1;
horizontalAxis.Maximum = 7;Is there a way I can apply this to ensure that the axes are flush with the outermost data points every time the chart is updated due to the binding? Is there a way to do this without manually setting values for the axes Maximum and Minimum?
I tried applying the following setting to the axis but it does not seem to produce the desired effect; there is still whitespace between the plotted data and the left and right borders of the plot.
horizontal.RangeExtendDirection = NumericalAxisRangeExtendDirection.None;

I fixed the array issue but its still not importing. I might figure it out but if anyone knows what might be wrong a solution would be appricieted. All the numbers seem to be correct in the string when i look it over and the size.
Exception thrown: 'Telerik.WinControls.UI.Scheduler.ICalendar.CalendarParseException'
public async void exportSchedulerDataFile()
{
string exportResult = this.workScheduler.Export(new SchedulerICalendarExporter());
await FirebaseHelper.uploadCalenderFile(exportResult);
}
public async Task importSchedulerDataFile()
{
string s = await FirebaseHelper.downloadCalanderFile();
workScheduler.Import(s, new SchedulerICalendarImporter());
Console.WriteLine("DID IT WORK?");
workScheduler.Refresh();
}
Im not sure what im doing wrong here.

I'm able to find an appointment from a search box using the following code.
Private Sub FindAppointment()The BringAppointmentIntoView works just fine - but I need the appointment that has been found to change color so the user can find it amongst all of the other appointments showing for that week.
Is there a way I can change the back color or otherwise highlight the appointment and if so, how can I reset it when the user performs a search for another appointment?
