473,799 Members | 2,834 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

910211 - how can i have ResizeEnd event in Silverlight?

7 New Member
hi
regarding to the solution given by Jeffrey Tan in the following post:
http://bytes.com/topic/c-sharp/answe...resizing-event
i've this question that when my application is a Silverlight application what can i do? WndProc is not available to be overridden, is it?
Apr 30 '12 #1
2 2243
Aimee Bailey
197 Recognized Expert New Member
I am sure there are many other ways to do it, but the first thing that came to mind when I saw this question, was to use a simple timer that monitors weather the control is resizing, or has finished resizing. Here is the crude example of how you could achieve this:

Expand|Select|Wrap|Line Numbers
  1.  
  2.     public partial class UserControl1 : UserControl
  3.     {
  4.         delegate void FinishedResizeHandler(Size finalSize);
  5.         event FinishedResizeHandler FinishedResizing;
  6.         DispatcherTimer ResizeMonitor;
  7.         Size PreviousSize;
  8.  
  9.         public UserControl1()
  10.         {
  11.             InitializeComponent();
  12.             SetupFinishResizing(500);
  13.             FinishedResizing += UserControl1_FinishedResizing;
  14.         }
  15.  
  16.         void UserControl1_FinishedResizing(Size finalSize)
  17.         {
  18.             label1.Content = finalSize.ToString();
  19.         }
  20.  
  21.         void SetupFinishResizing(int delayInMs)
  22.         {
  23.             // Setup a simple timer.
  24.             ResizeMonitor = new DispatcherTimer();
  25.             ResizeMonitor.Interval = TimeSpan.FromMilliseconds(delayInMs);
  26.             ResizeMonitor.Tick += delegate(object sender, EventArgs e)
  27.             {
  28.                 // if the control has stopped resizing.
  29.                 if (RenderSize == PreviousSize)
  30.                 {
  31.                     ResizeMonitor.Stop();
  32.                     if (FinishedResizing != null) FinishedResizing(PreviousSize);
  33.                 }
  34.             };
  35.  
  36.             // Catch the size changed event.
  37.             SizeChanged += delegate(object sender, SizeChangedEventArgs e)
  38.             {
  39.                 ResizeMonitor.Start();
  40.                 PreviousSize = e.NewSize;
  41.             };
  42.         }
  43.     }
  44.  
  45.  
Note that I used a dispatcher timer for threading convenience, and a label within the user control to display the final size. Hope this helps you on the path to finding a solution!

Aimee Bailey
May 1 '12 #2
RhysW
70 New Member
Edit: Already answered, duplicate question http://bytes.com/topic/c-sharp/answe...esizeend-event
May 2 '12 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

18
2890
by: Christopher W. Douglas | last post by:
I am writing a VB.NET application in Visual Studio 2003. I have written a method that handles several events, such as closing a form and changing the visible status of a form. I have some code that applies to all these events, but I need to have specific code execute when the form closes. The properties for this method are sender (the originator) and e (event arguments). I know how to get typeof (sender) to determine what form or...
8
3131
by: Dennis C. Drumm | last post by:
I have a class derived from a SortedList called SystemList that contains a list of objects indexed with a string value. The definition of the objects contained in the SortedList have a boolean field and an event that is fired if the boolean field value changes. The derived SortedList class has an override for the Add method. The Add method adds an event handler for the object's event for each new item added to the list. In the...
2
11773
by: Hide | last post by:
hi, Now, I'm creating window based applicaton. In this application, I want to put some traps(code) before form minimizing or maximizing event, but I only can get events after form minimized or maximized. I tried to test these 2 codes below: 1.
11
17882
by: Sharon | last post by:
I'm writing a new control derived from UserControl. I need to get an event when the control is done resizing. I tried the Resize, SizeChanged, Move and the Layout events and I also tried to override them. But they all invoked when the control is in the middle of the resizing process. I'm not using breakpoints, I'm using trace to see which one is invoked and when.
4
10150
by: usl2222 | last post by:
Hi folks, I appreciate any assistance in the following problem: I have a form with a bunch of dynamic controls on it. All the controls are dynamically generated on a server, including all the validators. The user enters the data, presses OK. My OK button is dynamically generated as well, with some code-behind logic in
5
1329
by: Terry Olsen | last post by:
Can I have an Event & Method with the same name in the same class? I want to have a "Close" method to close a socket and a "Close" event to be raised when the socket is closed.
0
1281
by: =?Utf-8?B?QWxleCBLLg==?= | last post by:
Hi all I am using form's ResizeEnd event to adjust some GUI staff on my form. But when user maximizes the form, this event is not fired. Theoretically, I could use Resize or SizeChanged events to catch when form is maximized (or normalized from maximized state) but then I loose all advantages provided by ResizeEnd because those two events are fired way to often ... Is there other way to add kind of "Maximize" / "Normalize" events...
0
3296
by: xmlmahesh | last post by:
Hi, I have usercontrol I just want to know when user done with his resizing of the control (like ResizeEnd event). I am following below approach is this correct or something else I can do. Can anyone help me to find, where I am going wrong. Since my ResizeControl() is not invoking. But same code works on Win Forms. Please guide me. protected override void WndProc(ref Message m) {
0
733
by: DKn | last post by:
Hello all, I am doing C# .Net 2.0 windows application. I want to monitor the remote system events thorugh WMI events. the events like CPU usage more than 50% raise a alert, etc. we will be going for this type of query "select * from __instancemodificationevent within 5 where targetinstance isa 'Win32_Processor' and targetinstance.LoadPercentage > 50". This is fine. Here how i can provide secuity for Events. Please any one give...
3
3546
by: AliR \(VC++ MVP\) | last post by:
Hi Everyone, I have written a silverlight application, which talks to a WCF service, which was created within the website after watching this video: http://silverlight.net/learn/learnvideo.aspx?video=47177 The service gathers some data using a class library. This all works fine within Visual Studio, but when published to a web server it throws an excpetion, in the first xxxxServiceComplete call back, which
0
9541
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10485
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10252
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10231
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9073
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7565
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4141
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.