473,500 Members | 1,712 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

using CodeDom to create XAML windows

will CodeDom create XAML windows or just regular windows forms?

If so, how to I tell it to create a xaml window instead of a windows form?

thanks

--
mo*******@noemail.noemail
Mar 26 '07 #1
6 5738
moondaddy <mo*******@noemail.noemailwrote:
will CodeDom create XAML windows or just regular windows forms?

If so, how to I tell it to create a xaml window instead of a windows form?
Just change which type it's creating - can you give us a sample of your
current CodeDom code?

There's no such thing as a XAML window really - just the new WPF
classes, which often happen to be loaded using XAML.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Mar 26 '07 #2
I don't have any codedom code yet. I'm just trying to figure out where to
start. I rolled my own code-gen tool which writes the data access and
business classes, and now I'm attacking the UI tier and wanted to use WPF
windows. I found a codedom sample at:
ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en/dv_fxsamples/local/sampleexecutables/Applications/CodeDOMSample.zip

which seemed to be way more complicated than it should be. If I cant find
any clean samples using codedom to create WPF classes, then I will probable
add the initial class via VS to the project (someWindow.xaml) and generate
the xaml and cs code behind with my tool and just paste it in.

Actually, all I need to do is create 'someWindow.xaml' via codedom so that
all the hidden classes are created for me, then my tool can overwrite the
someWindow.xaml and someWindow.cs files with my custom code.
"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
moondaddy <mo*******@noemail.noemailwrote:
>will CodeDom create XAML windows or just regular windows forms?

If so, how to I tell it to create a xaml window instead of a windows
form?

Just change which type it's creating - can you give us a sample of your
current CodeDom code?

There's no such thing as a XAML window really - just the new WPF
classes, which often happen to be loaded using XAML.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Mar 26 '07 #3
OK here's my sample code. I dont see where or how to change the type to a
xaml window object.
static void Main(string[] args)
{

CodeCompileUnit compileUnit = new CodeCompileUnit();
CodeNamespace ns = new CodeNamespace("WarpCode");
compileUnit.Namespaces.Add(ns);
GenerateCSharpCode(compileUnit);
}

public static String GenerateCSharpCode(CodeCompileUnit compileunit)
{
// Generate the code with the C# code provider.
CSharpCodeProvider provider = new CSharpCodeProvider();

// Build the output file name.
string path =
@"D:\nwis\Apps\ConsoleApplication3\ConsoleApplicat ion3\tmpCode\";
String sourceFile;
if (provider.FileExtension[0] == '.')
{
sourceFile = "HelloWorld" + provider.FileExtension;
}
else
{
sourceFile = "HelloWorld." + provider.FileExtension;
}

provider.GetTypeOutput

// Create a TextWriter to a StreamWriter to the output file.
IndentedTextWriter tw = new IndentedTextWriter(
new StreamWriter(path + sourceFile, false), " ");

// Generate source code using the code provider.
provider.GenerateCodeFromCompileUnit(compileunit, tw,
new CodeGeneratorOptions());

// Close the output file.
tw.Close();

return sourceFile;
}


"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
moondaddy <mo*******@noemail.noemailwrote:
>will CodeDom create XAML windows or just regular windows forms?

If so, how to I tell it to create a xaml window instead of a windows
form?

Just change which type it's creating - can you give us a sample of your
current CodeDom code?

There's no such thing as a XAML window really - just the new WPF
classes, which often happen to be loaded using XAML.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Mar 26 '07 #4
moondaddy <mo*******@noemail.noemailwrote:
OK here's my sample code. I dont see where or how to change the type to a
xaml window object.
Again, there's no such thing as a "xaml window object". If your sample
code compiled and produced a WinForms application, it would be easier
to show the equivalent using a WPF window - but as it is, there's
nothing significant in there to change.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Mar 26 '07 #5
Hi,

Code Document Object Model(CodeDOM) enables developers of programs that
emit source code to generate source code in multiple programming languages
at run time, based on a single model that represents the code to render.

We could use CodeDOM to generate the source code behind the UI tier, as you
have done. But as for a WPF window, since it is made up of XML without any
source code, we should not generate its content using CodeDOM. To geneate
an XML file, we could use System.Xml.XMLWriter class.

Note that you should save the XML file as *. xaml.

For more information on how to create XML writers, you may visit the
following link.

'Creating XML Writers'
http://msdn2.microsoft.com/en-us/library/kkz7cs0d.aspx

Hope this helps.
If you have anything unclear, please feel free to let me know.

Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Mar 27 '07 #6
Thanks. thats what i needed to know.

"Linda Liu [MSFT]" <v-****@online.microsoft.comwrote in message
news:b6**************@TK2MSFTNGHUB02.phx.gbl...
Hi,

Code Document Object Model(CodeDOM) enables developers of programs that
emit source code to generate source code in multiple programming languages
at run time, based on a single model that represents the code to render.

We could use CodeDOM to generate the source code behind the UI tier, as
you
have done. But as for a WPF window, since it is made up of XML without any
source code, we should not generate its content using CodeDOM. To geneate
an XML file, we could use System.Xml.XMLWriter class.

Note that you should save the XML file as *. xaml.

For more information on how to create XML writers, you may visit the
following link.

'Creating XML Writers'
http://msdn2.microsoft.com/en-us/library/kkz7cs0d.aspx

Hope this helps.
If you have anything unclear, please feel free to let me know.

Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

Mar 27 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2347
by: Guillaume | last post by:
I don't think I'm the only one with this challenge so… I made code with the CodeDom classes and made code to create a new solution and a new project Now I want to get the codedom code in the new...
2
2860
by: KK | last post by:
Hi All I need to create a windows form control(from System.Windows.Forms.dll assembly) dynamically using Activator.How do I achieve this?Sample code is much more helpful. Thanks in advance ...
7
9967
by: Clint Herron | last post by:
Howdy! I posted this question on CSharpCorner.com, but then realized I should probably post it on a more active newsgroup. This will be my only cross-post. I'm creating a game engine, and...
0
2835
by: Marco Viana | last post by:
Hi, I'm developing an ASP.NET application with Visual Studio .NET 2003 in a Win XP Professional, .NET Framework 1.1 and IIS 5.1 computer with all the lattest patches. When testing a page...
7
2149
by: GVN | last post by:
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
1
4857
by: =?Utf-8?B?QU1lcmNlcg==?= | last post by:
I may have painted myself into a corner with GenerateInMemory=true. My app need a custom user step. Users want to code (sort of - they are not programmers) some refinements to a search...
3
2480
by: arunonw3 | last post by:
Please answer me 1. Is XAML maily aiming windows. Why is the controls on double click not produce the event handlers in the c# file( code behind or something ...) 2. XAML web browser...
6
10011
by: star-italia | last post by:
Hi, Is it possible to include a XAML file into another XAML file? For example If i have - Window1.xaml - Window2.xaml and both have a treeview with a custom Style, can i describe the style...
8
11456
by: moondaddy | last post by:
I'm posting code for a user control ( FunctionConnectorSelector) below which has 3 content controls in it. each content control uses a style from a resource dictionary merged into the app.xaml...
0
7018
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...
0
7182
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,...
0
7232
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...
0
7397
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4923
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...
0
3110
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...
0
3106
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
672
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
316
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.