Telerik Forums
UI for WinForms Forum
1 answer
168 views

For the application we want to customize the windows form title bar with showing product name, logo and license information and other details. As it is not possible with windows form title bar to do customization, we are using RadTitleBar on windows form. But if we used RadTitleBar and FormBorderStyle as Sizable, the application window is not showing in full screen and not able to resize the window. Sample application is attached. 

Please let us know solution using RadTitleBar and get the main application window show full screen, as well allow resize the window and in windows taskbar when mouse over on the application it has to show the title bar text also, like any other windows form application behaviour.

We are using Telerik 2019.2 winforms licensed version, any immediate help will be appreciated.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 05 Oct 2021
1 answer
159 views

Hi there,

Is it possible to display part of the world in a radMap by providing coordinates (X1, Y1) to (X2, Y2)  rather than showing the whole world  ?

 

example in the attached file. So the user should not be able to see more than the displayed area. User is able to zoom in but cannot zoom out to see more parts of the earth. Any suggestions?

 

Stoyan
Telerik team
 answered on 01 Oct 2021
1 answer
280 views

Hi,

I was wondering if with the Bing Search feature in radmap is possible to get a Postal Code inputting an address (eg: City, Nation and street)...

Any idea?

Thank you

Hristo
Telerik team
 answered on 01 Oct 2021
1 answer
145 views

Adding a button collumn to the grid that passes the 10th collumn with this method the 11th overlaped the 10th a a 11th is created empty

Any ideias

            GridViewCommandColumn commandColumnV5 = new GridViewCommandColumn();
            commandColumnV3.Name = "CommandVer5";
            commandColumnV3.UseDefaultText = true;
            commandColumnV3.DefaultText = "Rejeita";
            commandColumnV3.HeaderText = "Regeita";
            commandColumnV3.Width = 20;

            grdDocumentos.MasterTemplate.Columns.Add(commandColumnV5);

Dimitar
Telerik team
 answered on 01 Oct 2021
1 answer
177 views

Hello,

I've started using the Telerik UI WinForms Map control, and have seen some samples using MapRectangle.

However, I can't find this class anywhere in the Telerik namespaces. All I can find is MapPolyline and MapPolygon.

My referenced assemblies are:

Telerik.WinControls.dll

Telerik.WinControls.RadMap.dll

Telerik.WinControls.UI.dll

Am I missing an assembly reference?

I appreciate any guidance you can provide.

Dimitar
Telerik team
 answered on 01 Oct 2021
1 answer
572 views

I'm using RadGridView for WinForms.  How do I get the DataRow object from the RowsChanged event below?

private void radGridView2_RowsChanged(object sender, GridViewCollectionChangedEventArgs e)
 {
     if (e.Action != NotifyCollectionChangedAction.Reset)
     {
                DataRow myRow = ????
     }
}

Thanks!

Dimitar
Telerik team
 answered on 30 Sep 2021
2 answers
537 views

Hello, 

I'm facing a little problem concerning the radVirtualKeyboard control. I'm located in France and I would like the virtual keyboard to have the AZERTY-laoyout. No matter If I use the property SynchronizeCultureWithSystem or if I set the culture info manually, the keyboard only adapts some of the keys but the general layout remains QWERTY. 

I'm using the code 

radVirtualKeyboard1.SynchronizeCultureWithSystem = false;
radVirtualKeyboard1.VirtualKeyboardElement.CurrentCulture = new System.Globalization.CultureInfo("fr-FR", false);

This is the result: 

The code
radVirtualKeyboard1.SynchronizeCultureWithSystem = false;
radVirtualKeyboard1.VirtualKeyboardElement.CurrentCulture = new System.Globalization.CultureInfo("de-DE", false);

leads to this result which is not correct as well because the german keyboard layout is QWERTZ

Is there maybe another property to set to apply the culture info to the entire keyboard?

Thank you in advance and have a nice day!

Jana

Jana
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 28 Sep 2021
1 answer
320 views

How can I hide the lines between the rows? (I use Office2019 theme)

I already tried this:

        private void RadGridView_CellFormatting(object sender, CellFormattingEventArgs e)
        {
            e.CellElement.DrawBorder = false;
        }

Gridlines are gone but the horizontal lines are still there.

Nadya | Tech Support Engineer
Telerik team
 answered on 28 Sep 2021
1 answer
234 views

Hi Team,
          In Our application we are using the Telerik RadGridview, in that while we navigating the Next icon in the condition of there is no entries the Grid headers are not displaying. It Should show like the ScreenShot. I have added the video for your reference. Please  do the needful.

Video link : https://ttprivatenew.s3.amazonaws.com/pulse/suganya-gmail/attachments/17976581/TinyTake27-09-2021-02-48-42.mp4

ScreenShot : https://prnt.sc/1ttpo5j

Hristo
Telerik team
 answered on 28 Sep 2021
1 answer
524 views
I'm using Telerik RadGridView for WinForms.  Its data source is a table in a DataSet.  The grid view allows user to add, update, and delete rows.  Below is how the row update is done:

private void radGridView2_CurrentRowChanged(object sender, CurrentRowChangedEventArgs e)
{
    if (e.OldRow == null)
    {
        return;
    }

    DataRowView dataRowView = e.OldRow.DataBoundItem as DataRowView;
    if (dataRowView != null)
    {
        DataRow dataRow = dataRowView.Row;
        if (dataRow.RowState == DataRowState.Modified)
        {                    
      tableAdapter.Update(dataRow);
        }
    }
}

What I would like to accomplish is when user press the DEL key on a row, the row is still removed from the grid view but not from the backend database table. Instead, I would like to have an Update on the database table row's colunm (MarkedForDeletion) with a new value.

I'm thinking about intercepting the delete events (UserDeletingRow, or UserDeletedRow, or ?), and then manipulate the DataRow object and then call the tableAdapter.Update(dataRow) as above.  What exactly do I need to do?

Thanks!
Hristo
Telerik team
 answered on 27 Sep 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)
Form
Chart (obsolete as of Q1 2013)
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
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?