XAML - System Requirements

  • Thread starter Thread starter GVN
  • Start date Start date
G

GVN

Hi All,


I would like to write a .NET application which uses XAML. The following
is my system's specification:

Operating System : Windows XP

..NET Framework : 1.1

RAM : 512 MB

HardDisk : 80 GB

Visual Studio : 2003

My question is whether can I use XAML with the above mentioned
specifications or not. Please suggest.


Thanks,

GVN.
 
| Hi All,
|
|
| I would like to write a .NET application which uses XAML. The following
| is my system's specification:
|
| Operating System : Windows XP
|
| .NET Framework : 1.1
|
| RAM : 512 MB
|
| HardDisk : 80 GB
|
| Visual Studio : 2003
|
| My question is whether can I use XAML with the above mentioned
| specifications or not. Please suggest.
|
|
| Thanks,
|
| GVN.
|

This is not the appropriate NG to discuss XAML, you should post to the
"Avalon" forum
at:http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=119&SiteID=1
This aside, your system is not suitable for this kind of development. XAML
is part of the upomming V3 Framework, you are still at v1.1, so first of all
you'll have to install V2 followed by the beta of V3. Next, VS2003 can't be
used for XAML (and WPF), you need VS2005 with the beta of the "Orcas" tools
add-on. If you can't afford VS2005, your only option is to download/install
the latest SDK, and start using that come with it.
Start by reading the following URL and go on by downloading all the stuff
that is listed at the bottom. Keep in mind that you also need XP SP2.


Willy.
 
GVN said:
I would like to write a .NET application which uses XAML. The following
is my system's specification:

Operating System : Windows XP

.NET Framework : 1.1

RAM : 512 MB

HardDisk : 80 GB

Visual Studio : 2003

My question is whether can I use XAML with the above mentioned
specifications or not. Please suggest.

"True" XAML requires .NET 2.0 (well, 3.0 really - XAML is part of .NET
3.0) and thus Visual Studio 2005 (in one of its many guises).

Any reason you can't download Visual C# Express so you can use .NET
2.0?
 
Thanks a lot Mr. Jon. I heard something like MyXaml. It appears
something similar to MS XAML. In many of the articles I read MS
opossing MyXaml. I don't know how far it is feasible for a developer to
use MyXaml. I have a legacy application, in which I use a lot of custom
controls. If MyXaml is feasible, Can I implement my custom controls
using MyXaml?

Thanks in advance,

GVN.
 
GVN said:
Thanks a lot Mr. Jon. I heard something like MyXaml. It appears
something similar to MS XAML. In many of the articles I read MS
opossing MyXaml. I don't know how far it is feasible for a developer to
use MyXaml. I have a legacy application, in which I use a lot of custom
controls. If MyXaml is feasible, Can I implement my custom controls
using MyXaml?

I don't know, I'm afraid - you'd have to look at the MyXaml docs.
However, I don't think it's a great idea - because XAML has been
changing form quite a lot, it's unlikely that MyXaml will end up being
absolutely the same in terms of syntax. That could easily confuse you
when you later move to use "real" XAML.
 
Oh! So, its better to follow XAML rather than MyXaml. Thanks for your
kind advice. Can I use XAML to implement my custom controls? If so, can
you please suggest me a good URL where I can find relevant
information...

Thanks in advance,

GVN.
 
| Oh! So, its better to follow XAML rather than MyXaml. Thanks for your
| kind advice. Can I use XAML to implement my custom controls? If so, can
| you please suggest me a good URL where I can find relevant
| information...
|
|

Before you can start with XAML which is part of the V3 Framework you need to
download a bunch of stuff, and as I said you need to run XP SP2 or Windows
Vista.
To start with, you'll have to download and install the V2 Frameworkand
VS2005 Express edition. When done you need to install the V3 Framework from:
http://www.microsoft.com/downloads/...90-26E6-44E0-8780-5D3CCD3D94ED&displaylang=en

plus the Orcas extensions for VS2005, supplementary you can download and
install the SDK (see bottom of the page at the above URL).

Willy.
 
Thank you Willy.
As my project specifications do not include VS2005, what I learnt is
that I can not use XAML. Now I want to use XML and write a parser as
per my project specifications. For designing an XML, I need some
guidelines. I observed writing XML file in two different formats (if
anyother such types are there, please do explain):

1. <element>
<Color> Red </Color>
<Shape> Triangle </Shape>
<Sides> 3 </Sides>
</element>

2. <element Color="Red" Shape="Triangle" Sides="3"> </element>

I don't know exactly when where the above two are applicable. Can you
please help me?

Thanks in advance,
GVN.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top