autosize Questions

9

Solved

Let's say I have the following ListView: <ListView ScrollViewer.VerticalScrollBarVisibility="Auto"> <ListView.View> <GridView> <GridViewColumn Header="Something" DisplayM...
Vennieveno asked 14/5, 2010 at 14:38

5

Solved

I use the following code in order to autosize columns in my spreadsheet: for (int i = 0; i < columns.size(); i++) { sheet.autoSizeColumn(i, true); sheet.setColumnWidth(i, sheet.getColumnWidth...
Skipbomb asked 24/9, 2013 at 13:37

11

Solved

I am working on angular2 applciation. i have a requirement to autosize textarea. I am trying to reuse the angular2-autosize from https://github.com/stevepapa/angular2-autosize Followed the readme...
Eld asked 16/3, 2017 at 7:27

3

Solved

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. <List...
Consensual asked 24/4, 2009 at 20:20

6

Android recently added the support for resizing TextViews text size based on the view size and the min and max text size. https://developer.android.com/guide/topics/ui/look-and-feel/autosizing-text...
Jareb asked 1/11, 2017 at 11:31

5

Is there a way to avoid it? If my text is "Blablabla" and it doesn't fit in a square, I don't want to have something like: Blabla- bla I want "Blablabla" with a smaller font size. Is there a wa...
Eisegesis asked 27/10, 2017 at 13:43

11

Solved

I'm facing a problem with responsive texts. In my app are different text font sizes and I need to do them responsive for different screen sizes (only phones and device orientation portrait). I also...
Lannie asked 25/7, 2019 at 21:37

4

Consider this layout: <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://sc...
Overlong asked 13/3, 2018 at 22:13

4

I am using a DataGridView in C# .NET 3.5 and I want the height of all rows set to AutoSize. I set WrapMode = true but am still not getting the height to autosize.
Pecoraro asked 16/10, 2010 at 7:55

4

Solved

I have a to-columns table in a div : <div> <table> <tbody> <tr> <td class="action" > <a> ✔ </a> </td> <td class="content"> <p>Big...
Unstick asked 12/12, 2010 at 21:48

12

Solved

I use new autosize feature added in support library 26. I read a documentation which can be found here : https://developer.android.com/preview/features/autosizing-textview.html I suppose that it ...

2

This might be a bit of a stretch, but is there a possibility that a python script can be used to create VBA in MS Excel (or any other MS Office product that uses VBA) using pythonwin or any other m...
Gladysglagolitic asked 21/10, 2013 at 22:8

3

I'm trying to align 2 textviews by baseline and use autosize for textsize at the same time. Here is simplified code example. First textview has big size, so textsize auto set to some big value. Sec...
Lymphadenitis asked 31/1, 2018 at 16:25

5

Solved

I have learned that if the height of a grid row, where the ScrollViewer resides, is set as Auto, the vertical scroll bar will not take effect since the actual size of the ScrollViewer can be larger...
Reconnaissance asked 14/10, 2013 at 8:2

8

Solved

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 ...
Working asked 4/2, 2010 at 19:57

2

Solved

I am able to import MatTextareaAutosize from Angular Material, but I see nothing about it in the docs and have not found a way to use it. I expected to use something like this: <mat-form-field...
Kalpak asked 24/10, 2017 at 0:2

4

I want to implement an AutoSize property in a Custom Control (not User Control), in such a way that it behaves like other standard .NET WinForms controls which implement AutoSize (ala CheckBox) in ...
Sitra asked 25/3, 2012 at 0:51

2

Solved

In the following XAML the button will stretch to fit the width of the window, including as you resize the window. However, the TextBlock and blue box are centered. How would you change it so that: ...
Launderette asked 27/7, 2015 at 7:15

5

Solved

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 siz...
Stoeber asked 1/3, 2011 at 23:41

2

Solved

I am trying to do something like this: Basically, I am using a UICollectionView and the cells (3 diferent .xib). So far, it works. The thing I want to do is: Set a autoheight If rotate, add 1...
Barriebarrientos asked 1/11, 2018 at 22:2

2

Solved

I'm using AutoSizing cells with Autolayout and UICollectionView. I can specify constraints in code on cell initialization: func configureCell() { snp.makeConstraints { (make) in make.width.equ...
Deserving asked 2/4, 2018 at 17:45

4

in one of my forms a datagridview displays data from a database (of course the number of data (so number of rows) can change). The database connection is in the form load event. I just cant figure ...
Taunt asked 22/2, 2010 at 9:51

3

Take a GroupBox, put let say Label inside and then set AutoSizeMode = GrowAndShrink and AutoSize = true. Two problems will arise: There is a huge gap between Label and bottom of GroupBox (almost...
Exenterate asked 19/8, 2013 at 7:54

1

I have two problems with the GroupBox, they appears after setting GroupBox.AutoSizeMode = AutoSizeMode.GrowAndShrink and GroupBox.AutoSize = true. GroupBox.Text width is not taken into account ...
Principe asked 20/8, 2013 at 14:19

1

Solved

The new Autosizing TextViews are pretty awesome, but it seems a fundamental thing is missing: ellipses. Adding ellipses still requires defining the maxLines attribute, but if I want to be able to ...

© 2022 - 2024 — McMap. All rights reserved.