Telerik Forums
UI for WinForms Forum
21 answers
258 views
Hi,

I am creating an app that utilizes the RadPanorama tool. In the options tile, the user has the option to select what tiles they would like to see and what tiles that they would like to get rid of. However, when the user selects a tile to hide, the Rad Panorama leaves an empty space where that tile originally was. I would like the app to fill any blank spaces that might be created by the user in a tile row. I was wondering if the Rad Panorama had the functionality to move all the tiles back to the original start position (Row 0, Column 0) so that there are no awkward spaces when a tile is hidden? 

Thanks,

Derek O.
Dimitar
Telerik team
 answered on 04 Dec 2017
2 answers
61 views

Hi - I have a Panorama Control with 5 groups. Each group has variable number of tiles within. 

Using vb.net, how can I extract the names of each tile in every group? 

Thanks

Reynaldo
Top achievements
Rank 1
 answered on 25 Oct 2017
1 answer
53 views

If have a panorama on a form 

 

have groups in them with sections like 

Actions

-->tileCustomers

-->tileSuppliers

...

Settings

Maintenance

...

 

 

And a panorama2 called

 

having a group called Actions containing tiles of 

 

Add customer / edit customer etc.

 

 

want to show() when someone clicks on tile of  () panorama.

like a simple show/hide forms.

if hide() panorama1 and show()  it work as soon as hide panorama1 all is hidden.

 

Is there a simpler way of doing

 

basically trying to make a tile menu system where each menu has multiple sub menus, but not show all at once.

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 27 Jul 2017
2 answers
101 views

Hi,

i would like to change the color of my tileElement in runtime (property defined by user), but i would like to keep the effect of the tileElement (another color define  for mouseover)

Is there any way ?

OD
Top achievements
Rank 1
 answered on 22 Feb 2017
2 answers
53 views

Hello,

I have a problem to handle RadTileElement when setting the TileGroupElement.CellSize property.

I create a TileGroupElement and set the RowCount Property to 3, then i add 3 RadTileElements.

I create a second TileGroupElement, set the RowCount Property to 3, the CellSize to 250;50 and then i add 3 RadTileElement.

When I launch the project, the two groups have different behavior.

On the first one, i can do everything, i can position RadTileElement where i want.

On the second one, the behavior is really different. If i move the RadTileElements the position management is a mystery, it is impossible to rearrange them in columns when they have move to row.

<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class RadForm1
    Inherits Telerik.WinControls.UI.RadForm
 
    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        Try
            If disposing AndAlso components IsNot Nothing Then
                components.Dispose()
            End If
        Finally
            MyBase.Dispose(disposing)
        End Try
    End Sub
 
    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
 
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer. 
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.RadPanorama1 = New Telerik.WinControls.UI.RadPanorama()
        Me.TileGroupElement1 = New Telerik.WinControls.UI.TileGroupElement()
        Me.TileGroupElement2 = New Telerik.WinControls.UI.TileGroupElement()
        Me.RadTileElement1 = New Telerik.WinControls.UI.RadTileElement()
        Me.RadTileElement4 = New Telerik.WinControls.UI.RadTileElement()
        Me.RadTileElement5 = New Telerik.WinControls.UI.RadTileElement()
        Me.RadTileElement6 = New Telerik.WinControls.UI.RadTileElement()
        Me.RadTileElement2 = New Telerik.WinControls.UI.RadTileElement()
        Me.RadTileElement3 = New Telerik.WinControls.UI.RadTileElement()
        CType(Me.RadPanorama1, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'RadPanorama1
        '
        Me.RadPanorama1.Dock = System.Windows.Forms.DockStyle.Fill
        Me.RadPanorama1.Groups.AddRange(New Telerik.WinControls.RadItem() {Me.TileGroupElement1, Me.TileGroupElement2})
        Me.RadPanorama1.Location = New System.Drawing.Point(0, 0)
        Me.RadPanorama1.Name = "RadPanorama1"
        Me.RadPanorama1.RowsCount = 3
        Me.RadPanorama1.ShowGroups = True
        Me.RadPanorama1.Size = New System.Drawing.Size(1183, 435)
        Me.RadPanorama1.TabIndex = 0
        Me.RadPanorama1.Text = "RadPanorama1"
        '
        'TileGroupElement1
        '
        Me.TileGroupElement1.Items.AddRange(New Telerik.WinControls.RadItem() {Me.RadTileElement1, Me.RadTileElement2, Me.RadTileElement3})
        Me.TileGroupElement1.Name = "TileGroupElement1"
        Me.TileGroupElement1.RowsCount = 3
        Me.TileGroupElement1.Text = "TileGroupElement1"
        '
        'TileGroupElement2
        '
        Me.TileGroupElement2.CellSize = New System.Drawing.Size(250, 50)
        Me.TileGroupElement2.Items.AddRange(New Telerik.WinControls.RadItem() {Me.RadTileElement4, Me.RadTileElement5, Me.RadTileElement6})
        Me.TileGroupElement2.Name = "TileGroupElement2"
        Me.TileGroupElement2.RowsCount = 3
        Me.TileGroupElement2.Text = "TileGroupElement2"
        '
        'RadTileElement1
        '
        Me.RadTileElement1.Name = "RadTileElement1"
        Me.RadTileElement1.Text = "RadTileElement1"
        '
        'RadTileElement4
        '
        Me.RadTileElement4.Name = "RadTileElement4"
        Me.RadTileElement4.Text = "RadTileElement4"
        '
        'RadTileElement5
        '
        Me.RadTileElement5.Name = "RadTileElement5"
        Me.RadTileElement5.Row = 1
        Me.RadTileElement5.Text = "RadTileElement5"
        '
        'RadTileElement6
        '
        Me.RadTileElement6.Name = "RadTileElement6"
        Me.RadTileElement6.Row = 2
        Me.RadTileElement6.Text = "RadTileElement6"
        '
        'RadTileElement2
        '
        Me.RadTileElement2.Name = "RadTileElement2"
        Me.RadTileElement2.Row = 1
        Me.RadTileElement2.Text = "RadTileElement2"
        '
        'RadTileElement3
        '
        Me.RadTileElement3.Name = "RadTileElement3"
        Me.RadTileElement3.Row = 2
        Me.RadTileElement3.Text = "RadTileElement3"
        '
        'RadForm1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(1183, 435)
        Me.Controls.Add(Me.RadPanorama1)
        Me.Name = "RadForm1"
        '
        '
        '
        Me.RootElement.ApplyShapeToControl = True
        Me.Text = "RadForm1"
        CType(Me.RadPanorama1, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)
 
    End Sub
 
    Friend WithEvents RadPanorama1 As Telerik.WinControls.UI.RadPanorama
    Friend WithEvents TileGroupElement1 As Telerik.WinControls.UI.TileGroupElement
    Friend WithEvents RadTileElement1 As Telerik.WinControls.UI.RadTileElement
    Friend WithEvents RadTileElement2 As Telerik.WinControls.UI.RadTileElement
    Friend WithEvents RadTileElement3 As Telerik.WinControls.UI.RadTileElement
    Friend WithEvents TileGroupElement2 As Telerik.WinControls.UI.TileGroupElement
    Friend WithEvents RadTileElement4 As Telerik.WinControls.UI.RadTileElement
    Friend WithEvents RadTileElement5 As Telerik.WinControls.UI.RadTileElement
    Friend WithEvents RadTileElement6 As Telerik.WinControls.UI.RadTileElement
End Class

 

My question is how can i handle RadTileElement of the second group like those in the first one ?

I am using VB.Net radcontrols 2016 Q3 SP1.

Thanks in advance for helping me.

Best regards.

OD
Top achievements
Rank 1
 answered on 02 Feb 2017
3 answers
82 views

 Hello,

I'm trying to handle the TileGroupElement.Click event but it is a mystery to me.

Thanks in advance for helping me.

Best regards.

OD
Top achievements
Rank 1
 answered on 01 Feb 2017
2 answers
80 views

hello 

i have a web service that is sending some data to my windows application every 10-15 seconds and i want to use those data as Light Visual Elements and add them to my live tile . also i want to use live tile transition animation .

but the problem is in all the sample i seen, coders always add their light vishal elements manually and when i want to add (and remove) items from my live tile every 10 - 15 second i lost my transition animation 

is there a  way that  i can receive data (text) from a source every x second and add them to livetile and remove old ones and  still keep my transition animation like the one in the demo application 

and i use the code below 

value = random.Next(200);
LiveTile.Items.Clear();
VisualElement.Text = value
VisualElement.TextAlignment = ContentAlignment.TopCenter;
LiveTile.TransitionType = ContentTransitionType.Fade;
LiveTile.Items.Add(VisualElement);

(assuming i declared my panorama and my tile group )

and this code is inside a timer and its running every x seconds.

Thanks 

Arash
Top achievements
Rank 1
 answered on 19 Oct 2016
2 answers
146 views

Hi.

The two halves of the screen shot are the same tile in different states.

The first, in "No" state,  has a background image that is an opaque bitmap.

The second, in "Yes" state, shows the same tile, same background image, but its foreground Image is set to an opaque plain black bitmap painted with a solid white circle containing a green tick. This is to give a gray blind effect.

The bottom part of the tile is made up of several docked lightvisualelements to create a slider button.

I notice that the gray blind seems to be painted opaquely over the other elements, which I was pleased about as I actually wanted this effect. Is tile.Image always painted opaque? But I noticed that the bottom section of the tile isn't obscured or affected by by the blind, which again is what I want, but is this because of the presence of all the docking and visual elements?.

The problem is that I wanted the white, ticked circle to appear solid. Is this not possible by painting the circle as part of the image? Or do I need to add it as yet another docked visual tile element and set that one's image to the circle?

Hristo
Telerik team
 answered on 19 Sep 2016
1 answer
55 views

I just started using the panorama example "Demo Apps Hub".

When run as-is, the application starts slow, but it works as expected.

However, the first simple modification(change Form1's Windowstate property to Maximized) the sample is not behavng as expected.

An blank outline of the designed form width is printed on screen for as much as 1.5 seconds after which the form is resized and updated.

Is there any additional code needed to make the sample behave as one would expect?

 

Thanks!

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 13 Sep 2016
1 answer
104 views

hi

how can change color or animate or enable chnage when user mouse over tiles?

in regular nothing happened when user mouse over tiles. is there any solution?


thanks
Dimitar
Telerik team
 answered on 23 Aug 2016
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
Buttons, RadioButton, CheckBox, etc
DropDownList
ComboBox and ListBox (obsolete as of Q2 2010)
ListView
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
Menu
PropertyGrid
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
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
VirtualGrid
ContextMenu
Spreadsheet
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
Rotator
TrackBar
MessageBox
CheckedDropDownList
SpinEditor
StatusStrip
CheckedListBox
Wizard
ShapedForm
SyntaxEditor
TextBoxControl
LayoutControl
DateTimePicker
CollapsiblePanel
Conversational UI, Chat
CAB Enabling Kit
TabbedForm
DataEntry
GroupBox
ScrollablePanel
WaitingBar
ScrollBar
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
ColorBox
Callout
PictureBox
VirtualKeyboard
FilterView
Accessibility
DataLayout
NavigationView
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BreadCrumb
LocalizationProvider
Dictionary
Overlay
Security
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
Rating
TimeSpanPicker
BarcodeView
Calculator
OfficeNavigationBar
Flyout
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
+? more
Top users last month
Patrick
Top achievements
Rank 1
Iron
Iron
Iron
MIS
Top achievements
Rank 1
Ross
Top achievements
Rank 1
Marcin
Top achievements
Rank 1
Iron
Iron
Sean
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Patrick
Top achievements
Rank 1
Iron
Iron
Iron
MIS
Top achievements
Rank 1
Ross
Top achievements
Rank 1
Marcin
Top achievements
Rank 1
Iron
Iron
Sean
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?