active questions tagged resizing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T21:14:20Zhttp://stackoverflow.com/feeds/tag/resizinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1150021/resizing-of-frame-with-dynamic-external-source0Resizing of frame with DYNAMIC external sourceunknown (google)2009-07-19T14:28:21Z2009-11-29T18:00:03Z
<p>I have tried....<br />
I have tried a lot many things...<br />
Even searched Yahoo! , Google and Bing... </p>
<p>Why oh! why does the code not reveal...<br />
I just want to complete it and put the quality seal.... </p>
<p>External frame resizing...<br />
is so f'king tensionizing..... </p>
<p>I need to find the solution....<br />
before in my head it causes more pollution.... </p>
<h1>OK, Enough of useless poetry...</h1>
<p>Normal page structure :-</p>
<pre><code><body>
<div>
blah blah
</div>
<iframe>
this is an iframe whose source is modified frequently and point to various domains. This needs to be resized dynamically according to the src page it points to right now ....
</iframe>
</body>
</code></pre>
<p>I tried many codes, including the "contentWindow.....scrollHeight" thing, but as it is an external frame, the brower blurts something like "Security warning. access to frame with external frame not allowed " </p>
<p>Read somewhere that this can be accomplished using framesets ?</p>
<p>Any help will be highly appreciated.</p>
http://stackoverflow.com/questions/1730170/how-to-auto-resize-jframe-according-to-content0How to auto resize JFrame according to contentnimcap2009-11-13T16:05:36Z2009-11-13T17:11:29Z
<p>I have created a custom <code>JPanel</code> that displays images (lets call it <code>MyPanel</code>), I have added this to <code>JFrame</code>'s contentPane.</p>
<p>I want <code>JFrame</code> to be resized automatically to fit the <code>MyPanel</code> when image changes.</p>
<p>It looks like I need to call <code>frame.pack()</code> to do this. Calling <code>pack()</code> from <code>MyPanel</code> increases coupling so I don't want to do that.</p>
<p>To solve the issue I extended <code>JFrame</code> (lets call it <code>MyFrame</code>) and made <code>MyFrame</code> observer, and <code>MyPanel</code> observable. Whenever the image <code>MyPanel</code> is displaying changes it notifies the listeners, <code>MyFrame</code> for this instance. And then <code>MyFrame</code> calls <code>pack()</code> when it gets the notification.</p>
<p>Is there a smoother way of resizing <code>JFrame</code> according to its content?</p>
http://stackoverflow.com/questions/875225/resize-jqgrid-when-browser-is-resized1Resize jqGrid when browser is resized?Justin Ethier2009-05-17T18:58:53Z2009-11-11T19:31:25Z
<p>Is there any way to resize a <a href="http://www.trirand.com/blog/" rel="nofollow">jqGrid</a> when the browser window is resized? I have tried the method described <a href="http://www.trirand.com/blog/?page%5Fid=18/discussion/browser-resize-how-to-resize-jqgrid/page-1/post-3350/" rel="nofollow">here</a> but that technique does not work in IE7.</p>
http://stackoverflow.com/questions/1513650/how-to-get-rid-of-the-empty-space-in-the-right-part-of-dbgrid-delphi1How to get rid of the empty space in the right part of DBGrid DelphiTofig Hasanov2009-10-03T12:47:33Z2009-11-11T19:06:23Z
<p>Although the question seems simple, I couldn't find the answer to it. </p>
<p>I have a DBGrid component with lots of columns, and as a result they don't fit into the page and scrollbar appears. I also have column-autofix mechanism, which makes each column have width of the longest element in the table. When I scroll DBGrid to the right-end there is an empty space after the last column. How to get rid of this space?</p>
<p>One solution that I see is to stretch the last column to fit the empty space. But I don't know how to find the length of this empty space! DbGrid.Width and DbGrid.ClientWidth only give length of the component part, but not the real length of the table. Any hints??</p>
http://stackoverflow.com/questions/1234144/resizing-iframe-with-jquery-ui0Resizing iFrame with jQuery UIQuestionable2009-08-05T15:54:12Z2009-11-10T18:00:03Z
<p>I have this code and it works fine:</p>
<p>Head</p>
<pre><code> <script>
$(document).ready(function()
{
$("#test").resizable({minHeight: 50, minWidth: 50});
});
</script>
</code></pre>
<p>Body</p>
<pre><code><div id="test" style="border: .1em solid black;">
</div>
</code></pre>
<p>However when I change my "div" into "iframe" I can't resize it anymore.</p>
<p>Body</p>
<pre><code><iframe id="test" style="border: .1em solid black;">
</iframe>
</code></pre>
http://stackoverflow.com/questions/1300792/start-an-app-and-set-its-size-and-position-in-windows0Start an app and set its size and position in windowsasawilliams2009-08-19T15:37:24Z2009-11-08T07:00:02Z
<p>In Windows I would like to be able to run a script or application that starts an another application and sets its size and location. An example of this would be to run an application/script that starts notepad and tells it to be 800x600 and to be in the top right corner. Does anyone have any ideas regardless of language?</p>
http://stackoverflow.com/questions/279236/how-do-i-resize-pngs-with-transparency-in-php2How do I resize pngs with transparency in PHP?Ryan Doherty2008-11-10T21:28:35Z2009-10-31T20:44:02Z
<p>I'm attempting to resize pngs with transparent backgrounds in PHP and the code samples I've found online don't work for me. Here's the code I'm using, advice will be much appreciated!</p>
<pre><code>$this->image = imagecreatefrompng($filename);
imagesavealpha($this->image, true);
$newImage = imagecreatetruecolor($width, $height);
// Make a new transparent image and turn off alpha blending to keep the alpha channel
$background = imagecolorallocatealpha($newImage, 255, 255, 255, 127);
imagecolortransparent($newImage, $background);
imagealphablending($newImage, false);
imagesavealpha($newImage, true);
imagecopyresampled($newImage, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
$this->image = $newImage;
imagepng($this->image,$filename);
</code></pre>
<p><br />
<strong>Update</strong>
By 'not working' I meant to say the background color changes to black when I resize pngs.</p>
http://stackoverflow.com/questions/1535353/how-do-you-prevent-a-user-from-resizing-the-column-width-of-a-clistctrl-report-v1How do you prevent a user from resizing the column width of a clistctrl (report view)?aa2009-10-08T02:47:17Z2009-10-14T04:46:20Z
<p>How do you prevent a user from resizing the column width of a clistctrl (report view)?</p>
http://stackoverflow.com/questions/1428846/vb-net-resize-an-image-jpg-gif-png-to-avoid-out-of-memory-error-in-picturebox0VB.NET: Resize an image (jpg,gif,png) to avoid out of memory error in Picturebox Control on .NETCF 2.0nils-holger2009-09-15T18:19:05Z2009-10-08T13:27:09Z
<p>I'm searching for a solution to resize image(jpg) being passed in from an array in Picturebox Control on .NETCF 2.0 in VB.NET without resorting to using the opennetcf library, is it possible? </p>
http://stackoverflow.com/questions/280106/jeditorpane-inside-jscrollpane-not-resizing-as-needed1JEditorPane inside JScrollPane not resizing as neededShree2008-11-11T05:35:20Z2009-10-06T11:57:19Z
<p>Hai,</p>
<p>I am implementing a Comment box facility in my application which user can resize using mouse. This comment box contains a scrollpane which instead contains a JEditorPane in which user can insert comment. I have added the editor pane inside a scroll pane for the following reason:</p>
<p><a href="http://stackoverflow.com/questions/271881/auto-scolling-of-jeditorpane">auto scolling of jeditorpane</a></p>
<p>When the user resizes the comment box, I am setting the desired size for JScrollPane and the JEditorPane. When the user is increasing the size of the comment box, the size of these components are increasing as desired but when the size of the comment box is decreased, the size of the JEditorPane does not decrease even after setting the size. This leads to the scrollbars inside the scrollpane.</p>
<p>I tried using setPreferrredSize, setSize, setMaximumSize for JEditorPane. Still the size of the editor pane is not reducing. I tried calling revalidate() or updateUI() after the setting of size but no use. </p>
<p>I am using Java 1.4.2. </p>
<p>Please provide me some insight....</p>
http://stackoverflow.com/questions/1475080/how-to-resize-image-upon-uploading-to-database-in-asp-net-mvc1How to resize image upon uploading to database in asp.net mvc?tiff2009-09-25T02:02:35Z2009-09-28T03:25:33Z
<p>i want to resize an image before it is saved on my mysql database..
how will i process it?
i have here the code for view, controller, and model.</p>
<p>View:</p>
<pre><code><form method="post" enctype="multipart/form-data" action="<%=url.action("PhotoInsert") %>">
<%Using Html.BeginForm()%>
<p>
<label for="despcription">Caption :</label>
<%=Html.TextArea("caption")%>
</p>
<p>
<label for="image">Image : </label>
<input type="file" id="image" name="image" />
</p>
<input type="submit" value="Insert" />
<%End Using%>
</form>
</code></pre>
<p>Controller:</p>
<pre><code>Function PhotoInsert(ByVal caption As String, ByVal image As HttpPostedFileBase) As ActionResult
UploadDirectory = Path.GetDirectoryName(Request.PhysicalApplicationPath)
Dim fileName As String = Path.GetFileName(image.FileName)
Dim fullUploadpath As String = Path.Combine(UploadDirectory, fileName)
image.SaveAs(fullUploadpath)
dPhotos.pictureInsert(image:=image.FileName, caption:=caption)
End Function
</code></pre>
<p>Model:</p>
<pre><code>Imports Microsoft.VisualBasic
Imports System.Data
Public Class ClassPhotosConnection
Inherits ClassConnection
Public Sub pictureInsert(ByVal image As String, ByVal caption As String)
Dim insert As String = String.Format("INSERT INTO pictures(Image, Caption) VALUES ('{0}','{1}')", image, caption)
UpdateData(insert)
End Sub
End Class
</code></pre>
<p>Thank you!:)</p>
http://stackoverflow.com/questions/1166716/how-to-crop-fill-with-paperclip-or-rmagick0How to crop & fill with Paperclip (or RMagick) ?astropanic2009-07-22T17:04:19Z2009-09-26T15:00:07Z
<p>I upload a photo, it is a rectangle. How Can I get it resized and filled to a square ?</p>
<p>I mean when the photo is horizontal positioned it should have above and under it, two white fields (for keeping the shape of a square) and when it is vertically, it should have two white fields on the sides of the photo.</p>
<p>When I used PHP, a have used this <a href="http://www.verot.net/php%5Fclass%5Fupload%5Fsamples.htm" rel="nofollow">http://www.verot.net/php_class_upload_samples.htm</a></p>
<p>Have a look at the</p>
<blockquote>
<p>100x150, keeping ratio, filling top and bottom</p>
</blockquote>
<p>example</p>
<p>I'm using Paperclip with RoR. How is the best way to do that ?</p>
http://stackoverflow.com/questions/1432237/streching-and-shrinking-image-when-pinching-on-the-image0Streching and shrinking Image when pinching on the imageunknown (google)2009-09-16T10:48:18Z2009-09-16T18:04:02Z
<p>Hi,</p>
<p>In my app i want to drag a image any where in the view and want to resize the image by pinching,gestures.</p>
<p>I am able to drag the image any where by using - (void) touchesBeganNSSet*)touches withEventUIEvent*)event
and - (void) touchesMovedNSSet*)touches withEventUIEvent*)event .</p>
<p>But am not able to resize the image can any please help me.</p>
<p>Thank you </p>
http://stackoverflow.com/questions/174355/how-do-i-resize-my-panels-when-resizing-the-main-form-in-a-winforms-application2How do I resize my panels when resizing the main form in a winforms application?Anonymous Cow2008-10-06T13:49:10Z2009-09-08T21:37:08Z
<p>If the user of my winforms application resizes the main form, I want the 2 panels to stretch out also, along with the child controls.</p>
<p>How can I achieve this?</p>
http://stackoverflow.com/questions/1375009/yahoo-resizing-hover-events0Yahoo Resizing Hover EventsEl Guapo2009-09-03T18:07:27Z2009-09-03T18:07:27Z
<p>Does anyone know if it's possible subscribe to an event (possible a mouseOver) while using Yahoo!'s resizing library? I need to disable some other listeners when a user hovers over the handles of my object, however, I don't see anything in the documentation to do so.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/862146/delphi-gridpanel-does-not-adjust-at-first-resize1Delphi - GridPanel does not adjust at first resizeMariusz2009-05-14T08:15:50Z2009-09-02T09:17:14Z
<p>Hi.</p>
<p>I have a problem I am unable to solve even though I spend long time trying to do it.</p>
<p>I usually use GridPanels to align controls on forms. It has, however, an annoying bug. When the GridPanel align mode is alClient and I maximize its parent window, the GridPanel adjusts to the new size of that window, however, the controls laying on the grid do not. They stay in the same position they were before window resize.
It happens only at the first window's maximization. If the window is first resized manually, everyting is OK. I think the grid adjusts its child controls after the second resize event (??).</p>
<p>What to to do make GridPanel work properly if it comes to this bug? It might be enough to send a message to it (but what message?), I do not know. I tried to use Realign, Refresh etc., but they did not help.</p>
<p>Thanks for your help in advance,</p>
<p>Mariusz.</p>
http://stackoverflow.com/questions/1359103/flowdocument-isnt-using-the-full-width-height0Flowdocument isnt using the full width/heightH4mm3rHead2009-08-31T19:49:14Z2009-09-01T06:51:34Z
<p>Hi i have a FlowDocument which i want to fill the entire width and height of my window. I have tried using the flowdocumentpageViewer (no luck) and are now using a documentpageview. I still cant get it to dock/fill the entire space, its just sitting in the middle, in the minimum size it can create (does it make sense?)</p>
<p>here is my code:</p>
<pre><code>public DocumentPageView GetPage()
{
FlowDocumentPageViewer viewer = new FlowDocumentPageViewer();
StreamReader reader = new StreamReader(location);
string data = reader.ReadToEnd();
reader.Close();
string xamlData = HtmlToXamlConverter.ConvertHtmlToXaml(data, true);
FlowDocument result = (FlowDocument)System.Windows.Markup.XamlReader.Load(new MemoryStream(System.Text.UnicodeEncoding.Default.GetBytes(xamlData)));
viewer.Document = result;
viewer.VerticalAlignment = VerticalAlignment.Center;
viewer.HorizontalAlignment = HorizontalAlignment.Center;
DocumentPageView pageView = new DocumentPageView();
pageView.VerticalAlignment = VerticalAlignment.Center;
pageView.HorizontalAlignment = HorizontalAlignment.Center;
pageView.Stretch = System.Windows.Media.Stretch.Uniform;
pageView.PageNumber = 0;
pageView.StretchDirection = StretchDirection.Both;
pageView.DocumentPaginator = ((IDocumentPaginatorSource)result).DocumentPaginator;
return pageView;
}
</code></pre>
<p>Please note that this code contains the combination of my two methods but only the DocumentPageView is currently used. This is the xaml that is created from my HTML source:</p>
<pre><code><FlowDocument xml:space="preserve" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Paragraph TextAlignment="center" FontSize="22pt" FontFamily="arial">Test Paragraph</Paragraph>
<Paragraph TextAlignment="center" FontFamily="arial">Test second paragraph</Paragraph>
</FlowDocument>
</code></pre>
<p>If I resize the fonts the content is only resized vertically (please note that the stretch direction is set to both). Any ideas?</p>
http://stackoverflow.com/questions/1060039/gtk-detecting-window-resize-from-the-user1GTK detecting window resize from the userShmoopty2009-06-29T19:27:13Z2009-08-25T22:20:28Z
<p>In GTK (or pygtk or gtkmm...)</p>
<p>How can I detect that an application window has been <strong>manually</strong> resized by the user, as is typically done by dragging the window's edge?</p>
<p>I need to find a way to differentiate manual resizes from resizes that originate from gtk, such as changes in window content.</p>
http://stackoverflow.com/questions/1313341/wpf-bug-grids-column-does-not-accommodate-listbox-scrollbar0WPF bug? Grid's column does not accommodate ListBox scrollbaremddudley2009-08-21T17:51:32Z2009-08-21T18:14:29Z
<p>In the following example, the leftmost column's width does not increase to accommodate the <code>ListBox</code>'s scrollbar that appears when the <code>UserControl</code>'s height is decreased:</p>
<pre><code><UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Example">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.ColumnSpan="2">Example text</TextBlock>
<ListBox Grid.Row="1" Grid.Column="0">
<ListBoxItem>One</ListBoxItem>
<ListBoxItem>Two</ListBoxItem>
<ListBoxItem>Three</ListBoxItem>
<ListBoxItem>Four</ListBoxItem>
<ListBoxItem>Five</ListBoxItem>
</ListBox>
<Expander Grid.Row="1" Grid.Column="1" Header="Expander" />
</Grid>
</UserControl>
</code></pre>
<p>When the <code>TextBlock</code> with the <code>ColumnSpan</code> attribute is removed the column resizes as expected. Is this a bug in WPF?</p>
http://stackoverflow.com/questions/1195064/fastest-image-resizing-in-net1Fastest Image Resizing in .NETAsh2009-07-28T15:56:08Z2009-08-20T00:47:36Z
<p>I need the <strong>fastest library to resize full size images (some up to 9MB in size) to multiple sizes</strong>. </p>
<p>Here's the scenerio:</p>
<ul>
<li>User uploads a photo</li>
<li>a FileSystemWatcher is running in a service watching the drop location (on a SAN)</li>
<li>When a new photo appears, the service will create 4 versions of the image at full JPEG quality:
<ul>
<li>100px wide</li>
<li>320px wide</li>
<li>640px wide</li>
<li>1280 wide</li>
</ul></li>
</ul>
<p>I'm not fussed if the library is C/C++ or anything else for that matter, as long as I can tap into it via .NET it's cool.</p>
<p>Also this will need to scale to possibly 1,000 <strong>active</strong> users.</p>
<p>Let me know your thoughts :)</p>
http://stackoverflow.com/questions/1289000/how-can-i-size-imageboxes-to-the-image-dimensions-in-crystal-reports0How can I size imageboxes to the image dimensions in Crystal Reports?syed abdul kather2009-08-17T16:25:53Z2009-08-17T18:04:51Z
<p>How can I size imageboxes to the image dimensions in Crystal Reports?
i am doing a project in tat i having 3 type of image with different size from db how can i set image</p>
http://stackoverflow.com/questions/1238798/animating-form-resize-in-vb-net0Animating form resize in VB.NETAndy E2009-08-06T13:14:58Z2009-08-06T14:12:52Z
<p>I have a form positioned slightly above the taskbar/system tray in the bottom right corner of my desktop window. It's sort of like a pop-up notification. The notification itself looks great, but there's a button on it which resizes the form up, animating the sizing in increments of 5px whilst keeping it's position relative to the bottom-right corner of the screen.</p>
<p>The problem with this is that it doesn't look very smooth. Adjusting <em>Me.Width</em> resizes from the left so you have to then move the form to the left with <em>Me.Left</em> to compensate. Me.SetBounds just seems to be a wrapper for setting those properties anyway.</p>
<p>Is there anything I can do to have the form smoothly (or at least appear to) resize outwards from the left of the form?</p>
http://stackoverflow.com/questions/1226123/how-does-wpf-solve-cyclic-dependent-sizing2How does WPF solve cyclic dependent sizing?Subb2009-08-04T07:32:51Z2009-08-04T17:33:35Z
<p>I'm trying to figure out how come WPF doesn't go crazy when I set a window to resize to its content and then set its content to take all the available space... Any idea?</p>
http://stackoverflow.com/questions/1164829/how-to-force-a-resize-from-a-child-to-a-parent0How to force a resize from a child to a parentArno2009-07-22T12:10:32Z2009-07-28T12:22:59Z
<p>I have a page-like flex application. In my main application is a holder (a canvas) that displays all the pages. The problem is that the components that are loaded inside the holder are bigger than the holder is when the main application starts. The holder height is set to 100% but still he gets scrollbars when I load a bigger component inside of him then himself. </p>
<p>How can I solve this problem? And if it isn't solvable would it work correct if I use a viewstack?</p>
<p>--update---</p>
<p>the holder looks like this:</p>
<pre><code><mx:canvas height="100%">
</canvas>
</code></pre>
<p>But the end of the application is 500 pixels lower so canvas height is 500 pixels high. Now I put a new child inside the holder that is 1000 pixels high. Now the holder hight should be 1000 pixels high</p>
http://stackoverflow.com/questions/1179397/ways-to-go-about-resizing-controls-in-resizable-windows0Ways to go about resizing controls in resizable windows?John W2009-07-24T18:37:03Z2009-07-24T19:31:00Z
<p>I have two DataGridView controls, with three buttons in between them vertically, in a VB 2005 form that need to be resized and moved around on a form resize.</p>
<p>The code below works, and does what I want. It takes the difference between the new size and the default size, splits the height difference between the two DataGridViews, and moves things around correctly.</p>
<p>What bugs me about it is that I've hard-coded the defaults into the ResizeEnd handler. How would I go about passing the default size so that I don't repeat myself?</p>
<p>Even better, is there a way to do it with anchoring, docking, and other stuff, so that I don't even need to write code?</p>
<p>Thanks in advance!</p>
<pre><code> Private Sub dlgShowAssets_ResizeEnd(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.ResizeEnd
Dim defaultWindowSize As New System.Drawing.Size(759, 619)
Dim defaultAssetDGVSize As New System.Drawing.Size(730, 153)
Dim defaultAssetDGVPos As New System.Drawing.Point(9, 186)
Dim defaultButton1Pos As New System.Drawing.Point(9, 345)
Dim defaultButton2Pos As New System.Drawing.Point(100, 345)
Dim defaultButton3Pos As New System.Drawing.Point(191, 345)
Dim defaultDetailDGVSize As New System.Drawing.Size(730, 177)
Dim defaultDetailDGVPos As New System.Drawing.Point(9, 374)
Dim deltaX As Integer = Me.Size.Width - defaultWindowSize.Width
Dim deltaY As Integer = Me.Size.Height - defaultWindowSize.Height
Dim deltaSize As New System.Drawing.Size(deltaX, deltaY / 2)
Dim deltaPos As New System.Drawing.Point(0, deltaY / 2)
Me.AssetDataGridView.Size = defaultAssetDGVSize + deltaSize
Me.btnAddAsset.Location = defaultButton1Pos + deltaPos
Me.btnEditAsset.Location = defaultButton2Pos + deltaPos
Me.btnDeleteAsset.Location = defaultButton3Pos + deltaPos
Me.AssetIdentifierDataGridView.Size = defaultDetailDGVSize + deltaSize
Me.AssetIdentifierDataGridView.Location = defaultDetailDGVPos + deltaPos
End Sub
</code></pre>
http://stackoverflow.com/questions/1156278/css-how-to-scale-entire-web-page-with-css4CSS: How to scale entire web page with CSS?TimH2009-07-20T22:19:22Z2009-07-22T11:05:25Z
<p>Using Firefox, you can enlarge an entire web page by simply pressing <code>CTRL+</code>.</p>
<p>What this does is proportionally enlarge the entire web page (fonts, images, etc).</p>
<p>How can I replicate the same functionality using simply CSS?</p>
<p>Is there an attribute or something like, <code>page-size: 150%</code> (which would increase the entire page portions by x%?)</p>
<p>Essentially, how would I replicate the page-zoom functionality of Firefox purely within CSS?</p>
http://stackoverflow.com/questions/1109453/how-best-to-resize-xaml-with-dynamic-text1How best to resize XAML with dynamic textSteve Crane2009-07-10T13:15:14Z2009-07-10T15:04:53Z
<p>In a Silverlight interface I'm working on I have the need to resize a stack panel when its container resizes, to prevent the text in it from being truncated. The text in question is added at runtime from language files, depending on the language the user has selected. As the lengths of strings can vary considerably between languages I'm a bit stumped on how best to approach this. This is what it looks like.</p>
<p><img src="http://farm4.static.flickr.com/3465/3707178078%5F3b9b86c598%5Fo.png" alt="alt text" /></p>
<p>The stack panel in question is the coloured block and the labels Driving, Active Work, Availability and Break are the strings whose length can change. The XAML currently looks like this.</p>
<pre><code><StackPanel x:Name="StatusTotals" Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,5,0,5">
<Border x:Name="DrivingBorder" Background="#80FF0000" BorderBrush="Black" BorderThickness="1" Opacity="1" CornerRadius="5,0,0,5" Margin="0,0,-1,0">
<StackPanel Orientation="Vertical" Margin="5,1" VerticalAlignment="Center">
<TextBlock Text="Driving" Tag="dttlDriving" HorizontalAlignment="Center"/>
<TextBlock x:Name="DrivingDuration" Text="00:00" HorizontalAlignment="Center"/>
</StackPanel>
</Border>
<Border x:Name="ActiveWorkBorder" Background="#8000FFFF" BorderBrush="Black" BorderThickness="1" Opacity="1" Margin="0,0,-1,0">
<StackPanel Orientation="Vertical" Margin="5,1" VerticalAlignment="Center">
<TextBlock Text="ActiveWork" Tag="dttlActiveWork" HorizontalAlignment="Center"/>
<TextBlock x:Name="ActiveWorkDuration" Text="00:00" HorizontalAlignment="Center"/>
</StackPanel>
</Border>
<Border x:Name="AvailabilityBorder" Background="#80FFFF00" BorderBrush="Black" BorderThickness="1" Opacity="1" Margin="0,0,-1,0">
<StackPanel Orientation="Vertical" Margin="5,1" VerticalAlignment="Center">
<TextBlock Text="Availability" Tag="dttlAvailability" HorizontalAlignment="Center"/>
<TextBlock x:Name="AvailabilityDuration" Text="00:00" HorizontalAlignment="Center"/>
</StackPanel>
</Border>
<Border x:Name="BreakBorder" Background="#8000FF00" BorderBrush="Black" BorderThickness="1" Opacity="1" CornerRadius="0,5,5,0">
<StackPanel Orientation="Vertical" Margin="5,1" VerticalAlignment="Center">
<TextBlock Text="Break" Tag="dttlBreak" HorizontalAlignment="Center"/>
<TextBlock x:Name="BreakDuration" Text="00:00" HorizontalAlignment="Center"/>
</StackPanel>
</Border>
</StackPanel>
</code></pre>
<p>I would like to be able to reduce the size of this panel if it's wider than the ruler drawn above it, which is already dynamically resizing as I want, but would like the values beneath the labels to stay at the size they are for the sake of readability.</p>
<p>What would be the best way to approach this? I've considered setting the FontSize properties of the labels or using a ScaleTransform but I'm unsure which of these is the best way to go. Is there a way to derive the width that the panel will adopt without actually changing the font sizes and then testing ActualWidth? If I could do this it would make this task easier.</p>
http://stackoverflow.com/questions/1089247/full-screen-window-sizing-in-screen-pixel-units-with-vs6-c-gui-editor-mfc0Full-screen window sizing in screen (pixel) units with VS6 C++ GUI editor, MFC?JCoenia2009-07-06T21:13:09Z2009-07-07T00:28:57Z
<p>I am trying to create a full-screen control panel window with many controls: buttons, sliders, list boxes, etc. </p>
<p>I can create a dialog window and add controls to it, but everything is scaled in dialog units. I just want to create a window in the GUI editor that is scaled in pixels, not derived units like dialog units. </p>
<p>I can sort of lay out all the controls in the GUI editor and then resize the window programmatically to full-screen using SetWindowPos, but the dialog window in the GUI editor will not look the same as the final product. I want it to be WYSIWIG in the GUI editor.</p>
<p>This is the front end for a small dedicated instrument control computer running XP. The SDK is written in MFC. I have to add and change controls frequently. The screen is small, 7" @ 800 x 600, so of course I am developing the program on a different computer. I don't want the program window to change when I change monitors -- I want it fixed at 800 x 600, and I want the controls to be fixed in size and layout as well. </p>
<p>There must be a way -- this is more basic than the default functionality.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1085854/resizing-user-uploaded-images-in-an-asp-net-project-library0Resizing user uploaded images in an ASP.NET project – Library?Anders Pedersen2009-07-06T07:51:04Z2009-07-06T12:55:52Z
<p>In a rather simple ASP.NET application where the user can upload a image, mostly from his digital camera. I have to resize it to a workable size for the web and a thumbnail.
What is here the best practice for? Is there a library that I in a simple way can implement without installing something on the web server.</p>
http://stackoverflow.com/questions/671791/jquery-tablesorter-resizing-column-widths2JQuery tablesorter + resizing column widthsBob Walsh2009-03-22T23:20:48Z2009-07-05T21:00:02Z
<p>I'm looking for a JQuery plugin for resizing table columns that works with tablesorter. Any recommendations?</p>