Tagged Questions

A Winforms control that allows the dynamic addition of components which are arranged in a grid pattern using columns and rows.

learn more… | top users | synonyms

20
votes
4answers
28k views

Winforms TableLayoutPanel adding rows programatically

I've been fighting with this for a while, and have found that a number of other people struggle with the TableLayoutPanel (.net 2.0 Winforms) as well. Problem I am attempting to take a 'blank' ...
10
votes
3answers
190 views

D Forms Library TableLayoutPanel?

Every time I try to use the D Forms Library, I run across the fact that it has no TableLayoutPanel -- which makes it practically impossible for me to make a good GUI. Is there any TableLayoutPanel ...
4
votes
1answer
2k views

Table layout panel scroll bar

given a table layout panel with 2 columns and many rows, how can i attatch a scroll bar to it as sometimes it grows much greater than the size of the form . Thank you
4
votes
5answers
1k views

Vertically aligning controls in a TableLayoutPanel

Is there any way to have textual content of controls on a TableLayoutPanel align themselves properly? I've got labels in column 0, and textboxes (or occasionally ComboBox or NumericUpDown controls) in ...
2
votes
3answers
117 views

Synchronising TableLayoutPanels

I have several TableLayoutPanels, each of which displays a category of name/value information in two columns - one with informational labels, and one with data labels. In each one, I've set the first ...
2
votes
1answer
598 views

Draw borders around some cells in a tablelayoutpanel

Don't ask why but I have the requirement to draw a border around certain cells in a TableLayoutPanel. For example, for simplicity, lets say I have a 1 row, 5 column TableLayoutPanel. Each cell has a ...
2
votes
2answers
557 views

C# change location of controls inside FlowLayoutPanel

I am using flowLayoutPanel to have relative location controls. I would like to change the location of control inside the flowLayoutPanel. when I say location, I dont mean control1 before control2 or ...
2
votes
2answers
1k views

.Net TableLayoutPanel – Clearing Controls is Very Slow

This is really simple. I have a TableLayoutPanel that is populated with controls (just Labels, Buttons, and some Panels with buttons) based on a database query. When the data needs to be refreshed, I ...
2
votes
3answers
2k views

Hide and show a cell of the TableLayoutPanel

Greetings, My tablelayout panel has one column and three rows. (one docked to Fill panel in each cell.) now I would like to be able to hide/show the rows . I want only one row to be visible at any ...
2
votes
2answers
984 views

TableLayoutPanel Controls.Add Problem

I have a TableLayputPanel with 2 columns and 4 rows and I'm trying to add buttons to it at runtime. I want to dynamically add each button to the first cell: private int nextIndex = 1; private ...
2
votes
1answer
3k views

Resizable table layout panel in c#

I find the table layout panel in c# (.net 2.0) to be very primitive. I wanted to allow my users to resize the columns in a table layout panel but there are no ready made options to do so. Is there a ...
2
votes
2answers
991 views

TableLayoutPanel Controls - Lock Column from Horizontal Scroll?

I'm using a TableLayoutPanel in a Windows Forms application to organize a set of controls in a grid-like fashion. I'd like to lock the TableLayoutPanel's first controls column so that it remains ...
1
vote
1answer
125 views

How to add rows into middle of a TableLayoutPanel

I have a TableLayoutPanel with 3 columns and 1 row: (Remove button, User Control, Add button) I want the Add button to add a new row similar to the above below the clicked button: e.g: BEFORE: ...
1
vote
3answers
229 views

TableLayoutPanel sizing

I may not be using the right control for what I want. I'm filling a table with controls and I want each column to automatically size to the controls contained within it. For example, a column of ...
1
vote
1answer
187 views

TableLayoutPanel GetCellPosition and GetPositionFromControl, how do they differ?

This may seem a trite question but I find the Microsoft documentation on these methods lacking in any detail. What is the difference between TablelLayoutPanel.GetCellPosition(Control control) and ...
1
vote
2answers
312 views

TableLayoutPanel GetControlFromPosition does not get non-visible controls. How do you access a non-visible control at a specified position?

I'm using a TableLayoutPanel and I want to get the control at a specific position in the TableLayoutPanel. I want to iterate over the rows and columns of TableLayoutPanel but this question applies ...
1
vote
1answer
36 views

Overriding parent controls enabledness

In WinForms when you set the parent control's Enabled property all of the child controls follow suit. However, I would like to enable just a single child control to be always always enabled ...
1
vote
1answer
132 views

How can i split a tablelayoutpanel

i have a tablelayout panel with no border, each row has a location field - which is grouped so i have something like location a location a location b location b location b location c as well as ...
1
vote
2answers
625 views

Is there a way to remove all controls from a row in TableLayoutPanel?

I generate controls for a TableLayoutPanel dynamically. I have a delete button in each row. When I click that, that row has to be removed. Dim removeBtn As New Button AddHandler ...
1
vote
1answer
581 views

TableLayoutPanel column widths at runtime: strange behavior or bug

I have a tableLayoutPanel with either 5 or 7 columns. Users can click "show/hide weekend" button to switch from 5 to 7 days. The problem : When you start with 5 days, then press the 5/7 button, the 7 ...
1
vote
1answer
1k views

Resizing rows and columns in a TableLayoutPanel when resized

I'm developing a simple app that is used to emulate a serial keyboard. The app needs to have a resizable window, with the 'keys' (buttons in this case) stretch with the window. I've decided to use a ...
1
vote
4answers
660 views

TableLayoutPanel's Control Columns properties

I've noticed that every control added to the TableLayoutPanel is given "Column" and "Row" properties. How can I get access to these properties through code? thanks:)
1
vote
1answer
2k views

Adding a row to a TableLayoutPanel in C# Windows Form

I am currently developing an application in C# using Windows Forms. I am using a TableLayoutPanel with two columns. How do I add a new row programatically to the table. I have tried doing a google ...
1
vote
4answers
585 views

TableLayoutPanel Labels Snap To Top Left?

I have a TableLayoutPanel and every time I put a label into one of the cells, it snaps to the top left corner. How can I get to it not do this or change where it snaps. Also, is it possible to ...
1
vote
1answer
207 views

C# : When modifying a tablelayoutpanel, controls in another tablelayoutpanel disappear

The two tableLayoutPanels have nothing in common. In the first one, adding a specific row just makes all the Labels (and not the others controls) of the second tableLayoutPanel dissapear! Has anyone ...
1
vote
1answer
714 views

Remove spacing between cells in tablelayoutpanel in Windows form?

I've programmatically created a class, Map, that inherits from the TableLayoutPanel class. The Map class adds Tile objects (children of Panel) that each have a background image. Everything works ...
1
vote
2answers
867 views

Flowlayout panel and autosizing child controls doesn't work

I am trying to get a very simple autosizing layout on a winform (C# .NET). I've tried TableLayoutPanels and FlowLayoutPanels but nothing works. I have a usercontrol which is a container for other ...
1
vote
1answer
2k views

Change row/column span programatically (tablelayoutpanel)

I have a tablelayoutpanel. 2x2 - 2 columns 2 rows. For example, I added a button button1 in a 1 row, second column. button1 has a dock property set to Fill. VS Designer allows to set column/row span ...
1
vote
3answers
1k views

Automatically resize TableLayoutPanel

I have a programmatically created TableLayoutPanel. It works fine but I couldn't find something: how can I make it size columns automatically when the form is resized? The panel is set to Dock.Top and ...
1
vote
2answers
734 views

How to prevent controls visually lagging behind on resize inside TableLayoutPanel?

I have a layout of medium complexity based on several nested TableLayoutPanels. Resizing the form causes the controls inside the deeper nested tables to visually lag behind the resize. Firstly, this ...
1
vote
4answers
567 views

Can WinForms and XAML not benefit from the same logic as CSS?

Can WinForms and XAML not benefit from the same logic as CSS? It occured to me this morning, as i was browsing some of my unanswered questions on Stackoverflow: If you're not using FlowLayoutPanel ...
1
vote
4answers
6k views

Dynamically Populated TableLayoutPanel Performance Degredation

I have a user control that contains a 2-column TableLayoutPanel and accepts commands to dynamically add rows to display details of an item selected in a separate control. So, the user will select a ...
0
votes
1answer
43 views

TableLayoutPanel responds very slowly to events

In my application I really needed to place a lot of controls (label, textbox, domainupdown) in a nice order. So I went ahead and used some nested TableLayoutPanel. The problem now is, this form ...
0
votes
2answers
52 views

Making control docking and scrollbars play nicely

I've got a panel which will sometimes need more vertical screen space than naturally fits, so it needs to be able to vertically scroll. So, it's all set to AutoScroll. The controls are contained ...
0
votes
0answers
71 views

Dynamically position a control from the center of a panel

I have a panel with its width x height is 1200 x 550. In this panel, I added controls dynamically during runtime. I was wondering, if I could dynamically position the controls from the center of the ...
0
votes
0answers
49 views

Making TableLayoutPanel and SplitContainer scroll properly with large content

So here's what I'm trying to do: A SplitContainer contains a first master control in one panel and a group of secondary controls in its second panel, organised by a TableLayoutPanel and added at ...
0
votes
1answer
37 views

retrieve label text from tablelayoutpanel

i have just begun experimenting on using table layout panel to keep things organised. I have added a label control with some text into a cell. how do I get this text back into a string variable at a ...
0
votes
1answer
43 views

Manage two or more frames datagridview with one scrollbar in c#?

In the first place, sorry for my bad english - I'm Spanish. I'm programming an application to take the qualifications of my girlfriend's school. I have divided the application into two parts by a ...
0
votes
0answers
83 views

Setting the spacing between Columns in a Winforms TableLayoutPanel

I have a table layout panel with two columns that are “auto size”, the contents of the columns are shown/hidden depending on the mode the application is running in. (Only one row if you care) As each ...
0
votes
0answers
45 views

TableLayoutPanel in Mono

I have an application which uses a table layout panel. I am adding/updating user controls dynamically to this panel. Scrolling is also enabled. This works perfectly fine in windows but when tried out ...
0
votes
0answers
110 views

Highlight a Cell/Control in TableLayoutPanel in C# windows application?

I am adding controls dynamically, one by one from ListBox on a Button click in TableLayoutPanel in Windows application. How do I highlight (color change) last added cell / control in the panel? I ...
0
votes
1answer
180 views

Table layout and moving / hiding controls

I have a form which has a table layout control on it. The table layout has 3 columns and a number of rows. The first column contains a label, the second is either a textbox, comboBox or date time ...
0
votes
2answers
211 views

C# Problem removing textbox from tableLayoutPanel

Hello I'm currently working on a windows from where I need to be able to add and remove a number of textboxes (and a lable) with a button click. I have to have it set out within a tableLayoutPanel and ...
0
votes
1answer
244 views

How to avoid flickering in TableLayoutPanel in c#.net

I am using TableLayoutPanel for attendance marking purpose.I have added controls(Panel,Label) inside this control and created events. In some condition i have cleared all controls and bind the same ...
0
votes
2answers
417 views

scroll bar TableLayoutPanel c#

I have a TableLayoutPanel that has several TableLayoutPanels inside it. The amount changes dynamically and will almost always be too many to be able to fit inside the form.I need it to have a scroll ...
0
votes
1answer
174 views

tips for dynamic UI creation

I need to create a UI that will load from an xml file information that will determine the look of the UI. Simply put, the xml file will determine the locations of a bunch of buttons in a grid like ...
0
votes
0answers
217 views

C# TableLayoutPanel replace control?

I was wondering if it was possible to replace one control in a TableLayoutPanel with another at runtime. I have a combo box and a button which are dynamically added to the TableLayoutPanel at ...
0
votes
1answer
489 views

Flowlayout and Tablelayout in windows form

What is the difference between Flowlayout and Tablelayout in windows form ? I know i can google it, but i am bit short on time. my requirement is too , that when the form is resized. Resizing for ...
0
votes
0answers
251 views

Mouse scroll on TableLayoutPanel breaks layout

Basically i have two problems with TableLayoutPanels (later named TLP) and mouse scroll To be more precise it is TLP inside TLP: TLP1 ( 3 rows x 1 col ) - this one should scroll ( AutoScroll = true ...
0
votes
2answers
268 views

Adding a List to a TableLayoutPanel through a Loop

I am having problems with my lists. I have a file that stores flight information and then I have a search form that allows a user to select a starting city and state, destination city and state, the ...

1 2