Telerik Forums
UI for WinForms Forum
5 answers
239 views

My Problem:

I have problem in conversational UI layout.When I set the conversational UI input text box to multiline its height expand vertically and i can't find a way to resize it to normal (like it look without multiline ) and also when I type something in it then send button and toolbar button push in right direction and get invisible to user even I set the dock property of chatUI to fill. 

 

What solution I want:

1. I want conversational UI in multiline mode without increase in the height of input textbox when its empty, height of input text box only increases if line in text get increase and it add vertical scrollbar for viewing down in input text box. (box size will increase decrease with user text input dynamically).

2. The button wont get push in right direction when user type in inputext box in multiline mode.

3. As user type in and text lines get increases then vertical scrollbar added dynamically and when box get empty the input text box goes back to normal size and the scrollbar get remove. (same as whatsapp chat input text box).  

 

I have attach some screenshot to explain my problem please have a look.

 

Thank you. Please reply me ASAP. 

 

 

 

marcelo
Top achievements
Rank 1
 answered on 25 Apr 2019
12 answers
969 views

How do I hide group row headings (see attached image) without affecting the group footers?

I am using 2015 Q2.

 

Thanks,

Howard

Dimitar
Telerik team
 answered on 25 Apr 2019
2 answers
97 views

Hello,

The RadListBox is not working properly when the Office2013 or the Material themes are activated.

The bug can be reproduced like this:

- Launch the "Demo Application - Telerik UI for WinForms R1 2019 SP1" provided with the control suite.

- Choose "Explore all controls", "List control", "Settings"

- In the "Settings panel", set "Selection Mode" to "MultiSimple"

- In the "Themes" panel, choose "Office2013Light"

- click on the second item, then the third, then the fourth to select --> OK

- click on the second item to unselect it --> Not OK, the list isn't refreshed accordingly

- click on the third item to unselect it --> Not OK, the second item is properly unselected but the third one is still selected

Is there any work around to this very annoying bug?

Thanks.

 

Laurent
Top achievements
Rank 1
 answered on 25 Apr 2019
4 answers
562 views
Is there a way to disable keyboard navigation in the RadListView control when it's in IconsView? I want to have other keys fire the KeyDown event (e.g. Del) but not the keyboard arrow keys.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 25 Apr 2019
5 answers
492 views
I have an issue with when the ItemMouseHover event is fired when the RadListView.ViewType is DetailsView.

The event only fires when you hover in an area outside the columns (see the attached image). I'm trying to set up a tooltip that displays item specific information when hovering over a row (item). I can get the tooltip create, however, when moving the mouse around it does not change the tooltip (because the event is not being fired) when I hover over the columns in the row. As you can see in the image (sort of) the tooltip still displays the value for the second row even though I'm hovering over the first row.

I have a sample project if you will tell me how to submit it.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 25 Apr 2019
1 answer
193 views

Hi, I have a mainform containing a radDock. Whenever I launch a new form they appear in the tabstrip. Is there any way to modify the tabstrips of some forms at runtime to show a number ?

 I would like it to look like notifications in chrome tabs.

 

Thank you for the help !

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 25 Apr 2019
1 answer
2.5K+ views

I have a created a WinForms User Control class (C# WinForms project in and Visual Studio 2017) that has (3) controls in it: A label, textbox, and button. Next drag-and-drop that User Control onto a WinForm, and it appears with each of the child controls. All appears good, for now..

Next I decide to make some changes in the User Control custom class, so I open it in the visual designer, move the button to a new location and change the size and change the caption of the button and save my changes. Rebuild. Next I open the Form that uses an instance of the User Control, and I do *NOT* see the updates I made to the User Control class.... The button is at the original location and original caption and original size.

Surely, the creates of this platform should now that anyone would expect these changes to be applied to the instance of the control wherever it is used in the app.

 

Please tell me I am missing something very basic here to make this work like true inheritance should...

 

 

Dimitar
Telerik team
 answered on 25 Apr 2019
2 answers
141 views

Hello!, I implement a spell check control using a custom (spanish) dictionary without problem using Telerik UI for WinForms R3 2017.

But now, I need to implement the same functionality using Telerik UI for WinForms Q1 2015 (SpellChecker.dll version 2015.1.225.40) and I can't compile my code:

Thank you in advance!

            '----------------------------------------------------------------------------------------
            ' Diccionario espanol para uso con SpellChecker
            '----------------------------------------------------------------------------------------
Public Shared ReadOnly CulturaEspanol As Globalization.CultureInfo = Globalization.CultureInfo.GetCultureInfo("es-ES")
 
            '----------------------------------------------------------------------------------------
            ' Diccionario espanol para uso con SpellChecker
            '----------------------------------------------------------------------------------------
            Public Class MySpanishDictionary
                Inherits Telerik.WinControls.SpellChecker.Proofing.WordDictionary
                Protected Overrides Sub EnsureDictionaryLoadedOverride()
                    Dim ls_dicpath As String
                    Try
                        ls_dicpath = My.Application.Info.DirectoryPath & "\es-ES.tdf"
                        If Not File.Exists(ls_dicpath) Then
                            frmError.MostrarDialogo(System.Reflection.MethodBase.GetCurrentMethod, New Exception(ls_dicpath & " No Existe!."))
                            Exit Sub
                        End If
                        Using lb_ms As System.IO.MemoryStream = New System.IO.MemoryStream(File.ReadAllBytes(ls_dicpath))
                            Me.Load(lb_ms)
                        End Using
                    Catch ex As Exception
                        frmError.MostrarDialogo(System.Reflection.MethodBase.GetCurrentMethod, ex)
                    End Try
 
                End Sub
            End Class
 
            '----------------------------------------------------------------------------------------
            ' Setea Diccionario espanol para uso con SpellChecker
            '----------------------------------------------------------------------------------------
            Public Shared Sub setearDiccionario(ByRef ao_spcControl As Telerik.WinControls.UI.RadSpellChecker)
 
                Try
                    Dim lo_textBoxControlSpellChecker As Telerik.WinControls.UI.TextBoxSpellChecker = ao_spcControl.GetControlSpellChecker(GetType(Telerik.WinControls.UI.RadTextBox))
                    lo_textBoxControlSpellChecker.ShowAllCapitalLettersWord = True
                    Dim lo_documentSpellChecker As Telerik.WinControls.SpellChecker.Proofing.DocumentSpellChecker = TryCast(lo_textBoxControlSpellChecker.SpellChecker, Telerik.WinControls.SpellChecker.Proofing.DocumentSpellChecker)
                    lo_documentSpellChecker.SpellCheckingCulture = CulturaEspanol
                    lo_documentSpellChecker.AddDictionary(New MySpanishDictionary(), CulturaEspanol)
 
                Catch ex As Exception
                    frmError.MostrarDialogo(System.Reflection.MethodBase.GetCurrentMethod, ex)
                End Try
 
            End Sub
 
.... at form you can use it:
 
            '-----------------------------------------------------------------------
            ' Spell Check "as you type" en componente texto observaciones
            ' spcCheck is RadSpellChecker
            ' txtObservaciones is RadTextBox
            '-----------------------------------------------------------------------
            spcCheck.AutoSpellCheckControl = txtObervaciones
            FG.Controles.Comunes.setearDiccionario(spcCheck)
Guillermo
Top achievements
Rank 1
 answered on 24 Apr 2019
7 answers
279 views

How do I get rid of the Expand / Collapse on Each card? (See Capture1)

Also, it might be related, but I would like the photo to expand to fill to the top and side edges in the card, as in the Telerik UI for WinForms demo application. (See Capture2).

I copied this Demo code exactly, even editing the form1.Designer.vb, so they should look the same, but I still get variations between the two.   In designer editing properties directly, it will not hold several properties, changing them to what the control thinks they should be.  This is especially true for trying to set the size and location of the CardViewItems.

Please advise.

Thanks,

 

 

HarisB
Top achievements
Rank 1
 answered on 24 Apr 2019
7 answers
348 views
Hello
I'm gonna read RadTreeView data from DataBase, where ninety are indefinitely subNode
Please guide
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Apr 2019
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
CheckedDropDownList
ProgressBar
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
NavigationView
VirtualKeyboard
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?