Telerik Forums
UI for WinForms Forum
1 answer
736 views

I have a panel class ExRadPanel, that inherits from RadPanel. I try to apply to it a copy of the style that is used for PropertyGridHelpElement in RadPropertyGrid. Below is my test code, but it doesn't work properly. Some style is attached to FillPrimitive inside ExRadPanel, but the visual effect is not like I expect.

 Is that possible to make modify a theme in runtime to make a copy of the required style setting with proper settings? 

private static void FixTheme(Theme theme)
{
    // try to add registration
    var sg = theme.FindStyleGroup(typeof(RadPropertyGrid).FullName);
    sg.Registrations.Add(new MyStyleRegistration
    {
        RegistrationType = "ElementTypeControlType",
        ElementType      = "Telerik.WinControls.RootRadElement",
        ControlType      = typeof(ExRadPanel).FullName
    });
    sg.Registrations.Add(new MyStyleRegistration
    {
        RegistrationType = "ElementTypeControlType",
        ElementType      = typeof(RadPanelElement).FullName,
        ControlType      = typeof(ExRadPanel).FullName
    });

    var copy = sg.PropertySettingGroups.ToArray();
    foreach (var settingGroup in copy)
    {
        if (settingGroup.Selector is null)
            continue;
        if (settingGroup.Selector.Value != nameof(PropertyGridHelpElement))
            continue;
        {
            // trying this ... 
            var newSg = new PropertySettingGroup
            {
                Selector = new ElementSelector(settingGroup.Selector.Type, nameof(RadPanelElement)),
                BasedOn  = settingGroup.BasedOn
            };
            newSg.Repositories.AddRange(settingGroup.Repositories);
            newSg.PropertySettings.AddRange(settingGroup.PropertySettings);
            sg.PropertySettingGroups.Add(newSg);
        }
        {
            // ... and this    
            var newIi = new PropertySettingGroup
            {
                Selector = new ElementSelector(ElementSelectorTypes.TypeSelector, typeof(FillPrimitive).FullName),
                BasedOn  = settingGroup.BasedOn
            };
            newIi.Repositories.AddRange(settingGroup.Repositories);
            newIi.PropertySettings.AddRange(settingGroup.PropertySettings);
            sg.PropertySettingGroups.Add(newIi);
        }
    }
}

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 03 Jun 2021
1 answer
471 views
I have this code and i want to load convert to method to load image async Is there any way to do that
 public class MyTypeConverter : TypeConverter
    {
        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
        {
            if (destinationType.Equals(typeof(Image)))
                return true;

            return base.CanConvertTo(context, destinationType);
        }

        public override object ConvertTo(ITypeDescriptorContext context,
            System.Globalization.CultureInfo culture, object value, Type destinationType)
        {
            if (destinationType.Equals(typeof(Image)))
            {
                WebRequest request = System.Net.WebRequest.Create(value + "");

                using (var response = request.GetResponse())
                {
                    using (var stream = response.GetResponseStream())
                    {
                        return Bitmap.FromStream(stream);
                    }
                }
            }
            return base.ConvertTo(context, culture, value, destinationType);
        }
    }

Nadya | Tech Support Engineer
Telerik team
 answered on 01 Jun 2021
1 answer
76 views

Dear sirs,

I hope this email finds you well and healthy.

I am developing an application using Telerik WinUI and my question is: What tool made the side bar used in Progress Telerik UI for WinForms Interface in the demo application, i just like the way it works i mean, all the forms are available and are opening in the same window, without having to open each form individually.

 

Thank you very much for your kind help and assistance,

Hani Mansour

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Jun 2021
1 answer
148 views
I have a range bar chart which is changed by 90 degree orientation . I wanted to streamline the thickness of the line as you can see in 5/17/2021 the lines are of different thickness and in 5/19/2021 it is lengthier . Attached is the image of the same . Kindly do the needful
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 May 2021
3 answers
873 views

Hi,

We have problem identifying objects on Telerik grids, from UI automation tool. Quite many screens in our application are using Telerik grids. We now are trying UI automation using Ranorex. Most parts are going good, except Telerik grid! Basically, objects inside the grid are not identified as they should.

Found similar discussion at https://www.telerik.com/forums/635401-gridview and we made change as per suggestion, by introducing "EnableCodedUITests = true". However, no good lunch, it worked only partially.

For ex, from the screen below, would like to access value of 'Status' from first row.

Expectation would be, Row0/1(based on indexing logic), column 'Status' and text/value "Arrived". However, it doesn't work so! Ranorex thinks, its something to discuss with Telerik. They asked to test it using 'inspect.exe' tool from win10 sdk. We tried and got same result. Below is the screenshot of result form inspect.exe

Row number is OK, but not column name is identified.. also, Value/Text is empty.

If inspect.exe cannot detect, heard no other automation tool in market can!

By the way, it works well with win.net grids.

Here is the sample of inspection on win.net grid... Column name and cell values are identified very well.

How can this be fixed for Telerik grid?!

Thanks in advance,

Vijay

Dimitar
Telerik team
 answered on 31 May 2021
1 answer
112 views

This library is missing in the latest release.

It is essential to rebuild the spreadsheet, pdfviewer, diagram and richtext

Any ideas where I can get it?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 May 2021
1 answer
168 views

hi,

how to set a callout size to autosize to fit its content where it holds a radlabel control with wraptext mode once it is used as a tooltip?

thx in advance...

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 May 2021
11 answers
1.0K+ views
Hi,

I use this telerik for quite sometime now. My question is about the radgrid. We use radgrid quite intensively.

Im trying to delete data using dataadapter and call refresh function of the grid.

dataset.tables(0).row(0).delete
dataadapter.update(dataset)
grid.refresh

The grid didnt refresh and the data is still there. I checked the database, it deleted.

I thought my coding is working then i tried using microsoft grid and I can the desired result. Please help. Is this bug?

Another case: when i try to update and grid is updated.

What happen?
Kapil
Top achievements
Rank 1
Iron
 updated answer on 29 May 2021
2 answers
103 views

Greetings,

In chart view documentation, Lasso Zoom segment, there is a highlight box drawn when Lasso Zoom area is specified via dragging mouse. But when I tested on my side, there is nothing visual drawn and shown when specifying the Lasso Zoom area, however the Lasso Zoom feature works just fine. Is there Anyway to draw a rectangular box corresponding to the area specified for Lasso Zoom like the picture I attached ? Thanks in advance.

Nadya | Tech Support Engineer
Telerik team
 answered on 27 May 2021
1 answer
113 views

Hi Everyone , I have some problem for set Space Beetween Point Y, i want to set space look the image,

this is source code

private void DrawRadChartViewLine(RadChartView p_oRadChartView, bool bIsGrey)
        {

            p_oRadChartView.AreaType = ChartAreaType.Cartesian;
            p_oRadChartView.Series.Clear();

            #region Config New Chart Series
            LineSeries series = new LineSeries();
            series.CategoryMember = "MonthName";
            series.ValueMember = "TotalAsset";
            series.DataSource = lDataLine;
            series.PointSize = new SizeF(7, 7);
            series.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
            series.Padding = new Padding(20);
            series.IsVisible = true;            

            p_oRadChartView.Series.Add(series);
            #endregion

            #region Grid Area Formatting

            CartesianArea area = p_oRadChartView.GetArea<CartesianArea>();
            area.ShowGrid = true;

            CartesianGrid grid = area.GetGrid<CartesianGrid>();
            grid.Size = new Size(970, 160);
            grid.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
            grid.DrawHorizontalFills = true;
            grid.DrawHorizontalStripes = true;
            grid.DrawVerticalFills = true;
            grid.DrawVerticalStripes = false;
            grid.ForeColor = Color.FromArgb(239, 229, 216); //228, 210, 190
            grid.Padding = new Padding(15);
            grid.BorderDashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
            grid.BorderWidth = 3.5f;//2.5f;                 

            if (bIsGrey)
            {
                area.Grid.BackColor = Color.FromArgb(246, 246, 246);
                area.Grid.BackColor2 = Color.FromArgb(246, 246, 246);
                area.Grid.AlternatingBackColor = Color.FromArgb(246, 246, 246);
                area.Grid.AlternatingBackColor2 = Color.FromArgb(246, 246, 246);
            }
            else
            {
                area.Grid.BackColor = Color.FromArgb(252, 249, 247);
                area.Grid.BackColor2 = Color.FromArgb(252, 249, 247);
                area.Grid.AlternatingBackColor = Color.FromArgb(252, 249, 247);
                area.Grid.AlternatingBackColor2 = Color.FromArgb(252, 249, 247);
            }


            #endregion
        }

 

i hope someone in this forum can help me..

thanky,, Regards Genda..

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 27 May 2021
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
NavigationView
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?