CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Nov 2000
    Location
    Germany
    Posts
    645

    System.Windows.Control namespace

    Hi

    System.Windows.Control namespace missing

    in Visual Studio 8 with .NET 3.5

    TextChangedEventArgs is in System.Windows.Control , but this is not avaialable

    I currently have , a trial version of Visual Studio 8 , could it be that in this version this namespace is not available

    Regards

  2. #2
    Join Date
    Mar 2004
    Location
    Prague, Czech Republic, EU
    Posts
    1,701

    Re: System.Windows.Control namespace

    1.) The namespace is defined in an assembly System.Windows.Forms.dll . Check if you are referencing the assembly.

    2.) What kind of project have you created? If it is WPF project, the Winforms probably would not be referenced, and it is question if you need it. It it is the case, maybe you are doing something wrong.
    • Make it run.
    • Make it right.
    • Make it fast.

    Don't hesitate to rate my post.

  3. #3
    Join Date
    Nov 2000
    Location
    Germany
    Posts
    645

    Re: System.Windows.Control namespace

    Ok
    Found it

    The assembly is called PresentationFramework.dll

    When i referenced it , problem solved

    Thanx

  4. #4
    Join Date
    Oct 2006
    Location
    Timisoara, Romania
    Posts
    123

    Re: System.Windows.Control namespace

    Quote Originally Posted by boudino
    1.) The namespace is defined in an assembly System.Windows.Forms.dll . Check if you are referencing the assembly.

    2.) What kind of project have you created? If it is WPF project, the Winforms probably would not be referenced, and it is question if you need it. It it is the case, maybe you are doing something wrong.
    System.Windows.Forms is the namespace used by WinForm projects.
    Windows Presentation Foundation projects use all the other System.Windows.* namespaces, including System.Windows.Controls.

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