CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2002
    Location
    Czech
    Posts
    251

    Form.StyleChanged event parameters

    Hi all,
    is it possible to get from this event what exactly has been changed? E.g. if form border, color etc. Or shall I need to only check it "manually" using form properties?
    Code:
    private void MDIChildForm_StyleChanged(object sender, EventArgs e)
    {            
    }
    .net 2.0, VS2005.
    thanks!
    David

  2. #2
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: Form.StyleChanged event parameters

    No, it's not possible to know from the event arguments what changed.
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured