Telerik Forums
UI for WinForms Forum
1 answer
86 views

Hi ,

As user puts more more column for grouping i need to increase height of GroupPanelElement so that it can show all column which are used in grouping without scrolling.
Also, Want to decrease size if user remove column from grouping.

 

Thanks,
Shubham Jain

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 14 Jul 2023
3 answers
220 views

Hello,

 

We are using the Numpad version of your RadVirtualKeyboardForm and did some modifications on the layout which worked absolutely fine so far. The only thing we would still like to do is to make each key bigger because we use it on a touch screen and the standard key size appears to be too small for certain of our users.

We are using an XML file in order to load the keyboard layout and I tried to change the KeyWidth and KeyHeight in the XML file which works fine. But the layout becomes messy as the window of the keyboard only seems to grow horizontally but not vertically as seen in the screenshot. Is there a possibility to indicate the window's size somewhere?

Thank you in advance and have a nice day!

Jana
Top achievements
Rank 2
Iron
Iron
Iron
 updated answer on 13 Jul 2023
1 answer
92 views
In winform gridview grouping section, there is a placeholder "Drag a column here to group by this column."

It is center aligned. Is there any way I can move this to left aligned?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 13 Jul 2023
1 answer
167 views

When grouping, each group shows two extra rows:

  1. Summary Top Row -> Same as Main Grid Summary Top Row
  2. Summary Bottom Row -> I believe it pick from Main Grid Summary Bottom Row.

 

We do not need this. Is there any way to hide these?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 12 Jul 2023
1 answer
150 views

Hi,

When the Chinese input method is used, a Chinese word is generated after the space key is pressed. For example, if you enter j, i, a, n, c, h, a, and then press space, you will get "检查". I want to filter "检查" as a filter word. What should I do? Thanks.

Dinko | Tech Support Engineer
Telerik team
 answered on 12 Jul 2023
1 answer
127 views

Hi,

 

I'm trying to use a PageView as a container for Grids (to eventually function as filters). ViewMode is Explorer bar as I want each page to open individually. I want each page to adjust it's height to the full height of the grid (above the grid I'm planning to include a TextBox for filtering but that's for later). Only the PageView's scrollbar should appear (when needed) not the grid's. I've been combining design settings (ie. Content Size Mode to AutoSizeToBestFit) and code for days and this combination behaves unexpectedly (dare I say it almost randomly). I've attached the source form if someone can help me out.

A few other things (see picture):

- The first time I expand one of the pages it appears gray and empty, without label, bug? (red)

- How do I get rid of the header? (marked yellow)

- Is it possible to include an icon/button aligned to the right of each Filter (to be used for clearing the selection)? (blue dots)

Jure

Dinko | Tech Support Engineer
Telerik team
 answered on 11 Jul 2023
1 answer
295 views

Hello,

I have a RadPageView control with Windows 8 theme and strip view mode.

When I disable the control, the color of the strip behind the tabs changes to a dark gray. I do not want it to change, but to stay in control color.

If I use the EnabledChange event and change the ItemContainer.BackColor of the StripElement it still shows the dark gray first.

 

I have seen that this is possible for example in Fluent theme, but want to use Windows 8 theme for my application.

I would love to use an easy way (SetThemeValueOverride) if possible. But I also haven't found a fitting property in the theme's style repositories and groups


 

Dinko | Tech Support Engineer
Telerik team
 answered on 10 Jul 2023
2 answers
160 views

I want to achieve functionality of Re-Ordering Rows In a Grid.

Requirement:
User will Select Row and Click on Up Button on UI to shift that on Up direction. Example If user select 3rd row from top and then click on up then it must shift that row to 2 position from top.
Also the which was on 2nd postion from top now comes on 3rd from top 

Below code I tried but not working Properly When Rows are More than 2 in a grid:

private void btnInternalUp_Click(object sender, EventArgs e)
    {

for (int index = 0; index < this.m_grdGridControl.SelectedRows.Count; index++)
{
var currentRow = this.m_grdGridControl.SelectedRows[index];
int currentIndex = currentRow.Index;
int nextIndex = NextIndex(this.m_grdGridControl, currentIndex, "up");                    
this.m_grdGridControl.MasterTemplate.Rows.Move(currentIndex, nextIndex);
   
}

    }

//NextIndexMethod Return the index where row need to be shifted:

public static int NextIndex(RadGridView grd,int currentIndex,string direction)
    {
        int nextIndex;
        if (direction.ToLower() == "up")
        {
            if(currentIndex == 0)
            {
                nextIndex = 0;
            }
            else
            {
                nextIndex = currentIndex - 1;
            }
        }
        else
        {
            if(currentIndex == grd.Rows.Count - 1)
            {
                nextIndex = currentIndex;
            }
            else
            {
                nextIndex = currentIndex + 1;
            }
        }

        return nextIndex;
    }

 

Shubham
Top achievements
Rank 3
Iron
Iron
Iron
 answered on 10 Jul 2023
1 answer
167 views

Hello, 
we are using OpenEdge 10.2B and have quite a few files with OCX controls which we would like to change to use Telerik controls.  

Right now I'm focused on replacing progress bars to use RadProgressBar.

What I've done so far is created a ProgressBar.cls which has the RadProgressBar and a cancel button in it's own window.  The progress bar window is shown overtop of the calling window and is updated accordingly.  It works well, we were just hoping we could keep them in the same window.

Is it possible to use Telerik controls in a .w file?  Or are we going to need to rebuild each program that uses an OCX control to achieve this?

Dinko | Tech Support Engineer
Telerik team
 answered on 07 Jul 2023
1 answer
229 views
Hi,

I am trying to use the radColorDialog but its not showing on top of my main form.

The main form is set to TopMost to ensure its at the top (the app has other forms open)

From the main form I am calling:
private void button1_Click(object sender, EventArgs e)
        {
            this.TopMost = true;
            this.BringToFront();

            radColorDialog1.Reset();
            
            if (radColorDialog1.ShowDialog(this) == DialogResult.OK)
            {

            }
            
        }

This is winforms .net7 I am only using this one Telerik control UI.for winforms... (2023.2.606)

I would expect the dialog to above the main form.

I tried the colourBox and it has the same issue.
Dinko | Tech Support Engineer
Telerik team
 answered on 06 Jul 2023
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?