Questions tagged [custom-panel]
11 questions
8
votes
2 answers
Izpack: Creating custom panels
I am trying to create a custom panel for an IzPack installer. This means that I have to extend IzPanel. However, it appears that if I do this, the extended panel needs to be in the com.izforge.izpack.panels package.
Then I found this post, which…

bguiz
- 27,371
- 47
- 154
- 243
3
votes
2 answers
Adding visible elements to a custom Panel in Silverlight 3
As I understand it, a Panel isn't meant to have any visible "chrome." The StackPanel, Grid and Canvas don't have any visible elements (with the exception of the gridlines, which they say are only for debugging layout.)
In my example, I am going to…

Larsenal
- 49,878
- 43
- 152
- 220
2
votes
0 answers
Can not inherit from VirtualizingPanel or OrientedVirtualizingPanel
I want to create a customized virtualizing panel which can be used as ItemsPanel for ItemsControl in Windows Store apps or UWP project. I thought it's would be the easiest way to inherit and extend VirtualizingPanel or OrientedVirtualizingPanel. But…

SimonFisher
- 380
- 1
- 4
- 13
2
votes
1 answer
Problem with custom scrolling in custom panel
I'm coding a custom panel representing the hand of cards. It's a panel that will stack the cards horizontally. If there isn't enough space, each card will overlap part of the card left of it. Minimum part should be always visible. I accomplished…

Jurica Hladek
- 40
- 1
- 6
1
vote
1 answer
Custom Right Aligned StackPanel control layout in Silverlight
I'm trying to create a custom layout container, with the same characteristics of StackPanel, with the exception that it lays out the items starting at the right edge of the screen. Needless to say it does not work correctly.
I have identified a…

Rire1979
- 652
- 12
- 24
1
vote
0 answers
Redesigning custompanel upon userclick in C#
I am using C# in a WinForm on Visual Studio 2010. I made a custompanel with 10 richtextboxes inside it. Each richtextbox refers to a column in a table of custompanels. The custompanels load inside of a splitcontainer at runtime. When the user…

Tatiana Laurent
- 281
- 1
- 4
- 13
1
vote
1 answer
Custom VirtualizingPanel: IItemContainerGenerator.IndexFromGeneratorPosition(position) returns -1
I am building a custom VirtualizingPanel to be used in and ListBox control.
I am doing some testing where i faced a problem in the method
IItemContainerGenerator.IndexFromGeneratorPosition(position)
It returns -1 if I set the ListBox's…

icube
- 2,578
- 1
- 30
- 63
0
votes
1 answer
Trying to create a custom panel
I am trying to create a custom panel which will contains many controls. It is the first time I create a custom control like this. This example contains a panel with a button inside that panel.
I am not sure why the panel is not added to the Form1…

Andreas
- 1,121
- 4
- 17
- 34
0
votes
0 answers
How can I dispose of my current JFrame at the end of a thread?
I am trying to create a custom loading screen for a Java WAVPlayer app. The initial JFrame holds a custom JPanel that displays a circular loading bar. The bar's progress is controlled and updated within its own thread LoadThread. At the end of this…

jagged_prospect
- 23
- 5
0
votes
2 answers
How to create own panel with four label inside?
I want to create a usercontrol that include 1 panel and 4 label
Here is what I try so far
Public Class OrderPanel
Inherits Panel
Public ItemName As String
Public Quantity As Integer
Public Price As Decimal
Public DiscountType As…

vbnewbie
- 206
- 6
- 26
0
votes
1 answer
Adding controls to custom panel in design window
so I created a custom panel class like public class CustomPanel : Panel.
When I double-click it in Solution explorer, its design opens, but its empty (can't see the panel itself, just the text:"To add components to your class, drag them from the…

Haf_SK
- 302
- 2
- 11