Tagged Questions
A user interface implementation to automatically resize a control or element to accommodate its contents.
33
votes
15answers
51k views
How to auto-size an iFrame?
I'm loading an iFrame and want the parent to automatically change the height based upon the height of the iFrame's content.
To simply things, all pages belong to the same domain, so I shouldn't run ...
29
votes
8answers
16k views
WPF UserControl Design Time Size
When creating a UserControl in WPF, I find it convenient to give it some arbitrary Height and Width values so that I can view my changes in the Visual Studio designer. When I run the control, however, ...
8
votes
1answer
1k views
How to say XAML <Button Height=“Auto”/> in code behind?
How can you set Height="*" and Height="Auto" in code behind?
7
votes
2answers
271 views
Changing the font of a Delphi TLabel to Italic chops off the tail - why?
A simple demo of a default TLabel with font set to Arial Regular 16 is shown below.
The code when the button is clicked is:
procedure TForm1.Button1Click(Sender: TObject);
begin
...
7
votes
3answers
7k views
WPF - setting HorizontalAlignment= Stretch to Texbox in StackPanel
Why doesn't a texbox stretch to fill space in a stackpanel? Is this by design? In a grid, the textbox stretches as expected.
5
votes
1answer
8k views
How to set width to 100% in WPF
Is there any way how to tell component in WPF to take 100% of available space?
Like
width: 100%;
in CSS
I've got this XAML, and I don't know how to force Grid to take 100% width.
...
4
votes
5answers
2k views
For Qt 4.6.x, how to auto-size text to fit in a specified width?
Inside of my QGraphicsRectItem::paint(), I am trying to draw the name of the item within its rect(). However, for each of the different items, they can be of variable width and similarly names can be ...
4
votes
1answer
3k views
How Do You Set a Textblock to Autosize to the Width of a TreeView?
I have a TextBlock that I need to autosize to the width of a TreeView. The TreeView and the TextBlock are both contained in a StackPanel. The StackPanel is inside an Expander. The width of the ...
3
votes
2answers
2k views
WPF: TextBox expanding with surrounding Grid but not with text
I have a problem with a TextBox in an application...
A window has a Grid with two columns. The left column contains a control with a constant width but with a height that adapts. The right column ...
3
votes
3answers
7k views
Wpf control size to content?
How do I make a WPF control to change its size according the content in it?
3
votes
2answers
4k views
How to make DockPanel fill available space
I'm trying the content of a shopping cart in an ItemsControl(ListBox). To do so, I've created the following DataTemplate:
<DataTemplate x:Key="Templates.ShoppingCartProduct"
...
3
votes
1answer
2k views
How to get a UserControl to stretch to fill the alloted space?
In a 630 x 400 Window, I'm loading there XAML elements:
menu at top
dynamic user control
footer at the bottom
The problem is that when I set the background of the UserControl, the color only goes ...
3
votes
4answers
4k views
In XAML how to say: default width and height for e.g. TextBox
So I'm coming at WPF from a HTML perspective.
I just want to put a TextBox on my Window like this:
<Grid>
<TextBox Name="theName" />
</Grid>
Turns out that the TextBox is ...
2
votes
2answers
273 views
How to prioritize WPF textbox wrap over autosize
I have a number of situations where I have panels or grids that resize automatically, but if they contain a TextBox with TextWrapping="Wrap", the TextBox continues to expand the panel/grid to the ...
2
votes
2answers
112 views
Windows mobile autoresize with panels
I've got an app which will run on two different devices - one with a screen size of 240x320, the other 480x640.
For all forms bar one the VS generated code is fine:
this.AutoScaleDimensions = new ...
2
votes
2answers
394 views
Custom UITableViewCell built using IB resizing?
I have ensured the autosizing mask of my cell allows flexible width, but when the device is rotated the Cells are not resized.
I have also verified the tableview is resized, the problem is directly ...
2
votes
3answers
4k views
how to get a UITableView row height to auto-size to the size of the UITableViewCell?
How to get a UITableView row height to auto-size to the size of the UITableViewCell?
So assuming I'm creating the UITableViewCell in Interface Builder, and it height is more than the standard size, ...
2
votes
1answer
860 views
C# DataGridView AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells
I am displaying a table with up to 100,000 rows in a DataGridView. The table has one column which contains large strings. I found out that setting the AutosizeMode to 'AllCells' in causes the ...
2
votes
2answers
4k views
Auto Size jquery ui Dialog in IE
How Can i autosize jquery ui Dialog in IE ?
This code is ok in FF but not in IE.
$('#dialog2').dialog({
autoResize: true,
show: "clip",
hide: "clip",
...
2
votes
1answer
372 views
Using adMob in AppDelegate and auto sizing views
I am converting my paid iPhone app to a free one, with AdMob integration
To simplify integration, I am adding the AdMobView to the AppDelegate.
This all works fine, as it is displaying an ad in the ...
2
votes
2answers
1k views
Groupbox with a flowlayout panel inside and autosize = true shrinks like it is empty
I have a groupbox that holds a flowlayout panel and the flowlayout panel holds a bunch of controls. I set the flowlayout panel to dock with the parent. Since I don't know how many controls will be ...
2
votes
6answers
12k views
Android — How to scale/resize text to fit a TextView?
I'm trying to create a method for resizing multi-line text in a TextView such that it fits within the bounds (both the X and Y dimensions) of the TextView. At present, I have something, but all it ...
2
votes
3answers
648 views
C# TabPages added at runtime don't autosize the parent form
I have a simple form that contains a TabControl where the TabPages are added at runtime. I have gotten all of this to work almost as I want it to, however when I set the form to autosize, it ignores ...
2
votes
6answers
3k views
Auto resize window content in WPF
When debugging my WPF programs I have noticed that when the window is the set size, the contols look just fine. But when the window is maximized, the content is positioned at the same place as if ...
2
votes
5answers
1k views
How do I set a “preferred size” for a form?
I have some controls on a form, and I have them anchored to the left and right of the form to ensure they grow and shrink with the form. My form is also set to automatically grow and shrink in order ...
2
votes
2answers
181 views
Creating a text area that fills the available space
I want to be able to create a text area that fills an available space.
However because of the different monitor resolutions I don't think I can simple specify a character width. Is there anyway of ...
2
votes
3answers
2k views
Auto size the controls in winform
I've a winform and I placed a listbox in that form. When I maximize the winform the size of the list box remains same.
But I dont want like this. I want to adjust the size automatically.
Is there ...
2
votes
1answer
508 views
How can I make a ListBoxItem stretch Vertically
I would like to make a ListBox function like a Grid. Each time a new item is added it should look like a a new GridRow was added (with a height of star). So if there are two items they will each take ...
2
votes
2answers
1k views
Setting a WPF control to expand to fill available space, and no more
How can I set up a WPF control to fill the available space in its parent's container, but not expand the parent?
The following snippet describes the layout I am attempting. I would like the Grid to ...
2
votes
2answers
328 views
Setting TextBox.Width=“*” via Code
Does anyone know how to set the TextBox.Width property to fill up the remainder of the parent container in code? In Xaml, I would simply set the Width property to *, but I can't figure out how to do ...
2
votes
1answer
1k views
Best Way to Horizontally AutoSize a WinForms TreeView Control?
I have a treeview control in WinForms that is filled from a wide variety of database content. I need to calculate the minimum width of the treeview control (after it is populated) so that horizontal ...
2
votes
2answers
1k views
Autofit WinForms RichTextBox to its contents
Does anybody know how can I dynamically resize a RichTextBox control to its contents?
1
vote
1answer
59 views
Is there any simplier/better way to auto-size the content of one-column ListView?
Alright, sorry for my english in advance, here what I need:
I got a ListView in XAML (WPF) where there items is located and what I need is that items to have the width equal to the ListView's width.
...
1
vote
1answer
151 views
Resizing UITableView When Displaying AdWhirl Ads Across Multiple Views
I am trying to integrate AdWhirl into my iPhone app using an AppDelegate singleton so I can use the same AdWhirl instance across multiple views, but cannot figure out how to resize the tables in those ...
1
vote
1answer
106 views
iPhone Multi-View Rotation Hell
This is my first post on here and I'm very new to iPhone developing, so please bear with me.
I have an app which has a few view controllers and each view controller has a few nib files that it ...
1
vote
0answers
59 views
How do I make a spark DataGrid grow horizontally to fully render all the columns?
I've set a DataGrid to display all the rows in the data provider by binding it to the height of the control.
Now that all rows are rendered, I want the DataGrid to grow horizontally so that every ...
1
vote
0answers
79 views
Autosizing ReportViewer in WPF?
I am designing a RDLC report in WPF. Naturally I am using WindowsFormsHost to host a ReportViewer object to display the report. However, since the length of the report, specifically, the height, of ...
1
vote
1answer
49 views
DataGridTemplateColumn sizing
I have a WPF app with a DataGrid containing 10 DataGridTemplateColumns. When I bind a collection of objects to the data grid they all display fine in the grid. The only problem is that if I have I ...
1
vote
1answer
471 views
asp.net c# - gridview rows and columns not lining up with text
I have a gridview that imports data from a remote database, this is working fine. The data populates and I can manipulate it easily enough. There seems to be issues with the spacing of the columns. ...
1
vote
1answer
365 views
AS3 Scale Text Function Causing Conflict With Textfield HTML Format
Hello Guys I am using the below function to scale dynamic font size at run time as thus:
function scaleTextToFitInTextField( txt : TextField ):void{
var f:TextFormat = txt.getTextFormat();
f.size = ...
1
vote
1answer
219 views
C# WinForm 3.5 DataGridView Column Autosize Margin
I have a C# 3.5 WinForm project, and I can't find where to adjust Margin used for a DataGridView's Header AutoSize.
AutoSizeColumnsMode is set to None.
I can resize the column larger or smaller, then ...
1
vote
1answer
114 views
How to autosize container elements to ensure min-height for visibility issues?
I have an ItemsControl and want to display some Strings from my CustomObject.
It's like
String A
String B
String C
where String A and B can be multiple lines long, but C can't. I was thinking of ...
1
vote
2answers
784 views
Auto Resize Dynamic Text Font as3
I have dynamic text field that must be a fixed width and height.
The actual text that will populate the dynamic text field is a variable.
What I would like to do is to reduce the font size if the ...
1
vote
1answer
359 views
WPF - Usercontrol as ListItemTemplate not filling listbox width
Just trying to get my head round WPF. I have a usercontrol which I'm using as the template for items in a listbox, however no matter what I try the usercontrol's width is always shrinking to the ...
1
vote
3answers
955 views
Flex 4.1 RichText/RichEditableText autosizing
In the past, I used the flash.text.textField object something like this:
tf = textField();
tf.autoWrap = true
tf.autoSize = "left"
tf.width = 100;
tf.text = "Text that is too long to fit in the ...
1
vote
2answers
126 views
uitextfied autosize for Landscape if it befor in Protrait view
i dont know about this :
is it possible that if user switch to Landscape view then size of uitextfied change as i have 4 text file in view ....just look and feel
thank you
1
vote
3answers
193 views
CSS - Have each item in a horzontal list have an equal share of the available padding
Consider a simple CSS layout, where containing wrapper div defines a fixed width of 900 or so pixels, everything inside it therefore expands to 100% width.
In here, I have a navigation div, ...
1
vote
2answers
1k views
How to auto-size a DevExpress TcxGrid
I've created a table from a TcxGrid with a simple table view. The data is being poked into the table using DataController.Values[n,m] as a simple string and I have some 10 columns that will show ...
1
vote
1answer
249 views
WinForms: right aligned label autosize
Right now I clarify this may be a duplicated question from: http://stackoverflow.com/questions/1692383/right-aligned-labels-in-winforms
But non of the answers satisfied me.
The problem is very ...
1
vote
1answer
1k views
Fancybox wrapper not auto-sizing correctly to image dimensions
I'm having an issue with FancyBox. It's supposed to auto-resize the wrapper in accordance to the dimensions of the image. It's not doing that. Specifically it's too small. You can view what I'm ...