C#: using System.Windows.*

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Oleg

    C#: using System.Windows.*

    Hi People,

    Does anybody knows how to set up a V.S. .NET.

    I am trying to use Windows libraries in my code, but got
    en error that library in not found, not installed, etc.

    here is the simple exaple.

    using System.Windows;
    using System.Windows. Frames;

    anyhow, it doesn't recognize the Windows part, does
    anybody knows how to fix it?
    I am using Visual Studio .NET (Version 7)
    Thank you in advance for help
  • Ann Marinas

    #2
    Re: using System.Windows. *

    Hi!

    You have an error on your namespace directive.
    System.Windows. Forms ------> not System.Windows. Frames

    Hope this helps! :D

    A

    "Oleg" <bind8@yahoo.co m> wrote in message
    news:24d2f01c38 d2d$65fb7950$a6 01280a@phx.gbl. ..[color=blue]
    > Hi People,
    >
    > Does anybody knows how to set up a V.S. .NET.
    >
    > I am trying to use Windows libraries in my code, but got
    > en error that library in not found, not installed, etc.
    >
    > here is the simple exaple.
    >
    > using System.Windows;
    > using System.Windows. Frames;
    >
    > anyhow, it doesn't recognize the Windows part, does
    > anybody knows how to fix it?
    > I am using Visual Studio .NET (Version 7)
    > Thank you in advance for help[/color]


    Comment

    Working...