Hello,
I have tried to use Custom Font with a BreadCrumb with the purpose of displaying an home icon for the first Element with the following code.
MyBreadCrumb.BreadCrumbElement.Items(0).Text = ChrW(&HF015)
MyBreadCrumb.BreadCrumbElement.Items(0).CustomFont = "Font Awesome 5 Free Solid"
But instead of a nice looking home Glyphs I have an old crossed ballot (see attached picture)
I'm missing something ?
By the way, you should take a look at Font Awesome Example (in VB.NET) in the following page https://docs.telerik.com/devtools/winforms/telerik-presentation-framework/glyphs and correct it. (the ChrW() instead of /uF017, the multiple variable settings instruction in one line).
Thank you for your support
Marco Guignard
Hi.
One of nice type of progress bar is "step progress bar" as like attached picture . How can make it in winform.
Me
.RadGridView1.Rows.Clear()
Me
.RadGridView1.ColumnCount = 5
RadGridView1.Columns(0).HeaderText =
"Id."
RadGridView1.Columns(1).HeaderText =
"Name"
RadGridView1.Columns(2).HeaderText =
"Under Appeal"
RadGridView1.Columns(3).HeaderText =
"Terminated"
RadGridView1.Columns(4).HeaderText =
"#"
RadGridView1.Columns(1).Width = 100
RadGridView1.Rows.Add ( 1,
"John"
,
True
,
True
)
RadGridView1.Rows.Add ( 2,
"Mary"
,
True
,
False
)
RadGridView1.Rows.Add ( 3,
"Peter"
,
False
,
True
)
How do I get the radgridview to display checkboxes for boolean values for the last two columns? The columns get manually loaded.
Best regards
Hello,
we are creating a barcode programmatically like it is described here: https://www.telerik.com/forums/generate-barcode-image-programmatically
The problem is, that the barcode itself is a bit small (width) for our purpose.
Our code looks like this:
var barcode = new RadBarcode();
barcode.Width = 900;
barcode.Height = 150;
barcode.Symbology = new Code39();
barcode.Value = "1890";
barcode.LoadElementTree();
var barcodeImage = barcode.ExportToImage(900, 150);
barcodeImage.Save(@"C:\test.png");
But if you look at the attached image (test.png), it has the correct size alright, but not the barcode itself.
Is there away to give the barcode itself more width?
Kind regards.
Me.IsMdiContainer = true
guid me
thanks
I want to generate the image of BarCode without showing on the WinForm. How to assign "Code39Extended" to Symbology?
RadBarcode rBL = new RadBarcode();
rBL.Symbology = "Code39Extended";
Thanks.
Hello,
I'm struggling to get some events to work on a RadListViewElement, which is a child of a custom RadElement, which in turn is inside another custom RadControl. I guess a few lines of code will help to describe this:
Imports Telerik.WinControls
Imports Telerik.WinControls.UI
Public Class xElement
Inherits RadElement
Private listElement As RadListViewElement
Public Sub New()
'Me.NotifyParentOnMouseInput = True
'Me.ShouldHandleMouseInput = True
'Me.Capture = True
'Me.CaptureOnMouseDown = True
End Sub
Protected Overrides Sub OnLoaded()
MyBase.OnLoaded()
AddHandler listElement.ItemMouseUp, Sub(s, e)
If e.OriginalEventArgs.Button = MouseButtons.Left Then
listElement.SelectedItem = e.Item
End If
End Sub
End Sub
Protected Overrides Sub CreateChildElements()
MyBase.CreateChildElements()
listElement = New RadListViewElement
With listElement
'.ShouldHandleMouseInput = True
'.NotifyParentOnMouseInput = True
'.Capture = True
'.CaptureOnMouseDown = True
.ViewType = ListViewType.ListView
.DataSource = New List(Of String)(New String() {"a", "b", "c"})
End With
Me.Children.Add(listElement)
End Sub
End Class
Imports Telerik.WinControls
<ToolboxItem(True)>
Public Class xControl
Inherits RadControl
Private element As xElement
Public Sub New()
element = New xElement()
RootElement.Children.Add(element)
End Sub
End Class
How can I find out the selected layout (list, small icon, etc.) chosen by the user at the point the dialog is closed?
Thanks
Steve