![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | WPF Is there a newsgroup for WPF somewhere? I have a WPF window with a menu. How do I dynamically add user controls into my mainwindow after each menu click? -- Arne Garvander (I program VB.Net for fun and C# to get paid. When get paid, I laugh all the way to the bank.) |
My System Specs![]() |
| | #2 (permalink) |
| | Re: WPF Simply the public.dotnet.languages.xxxx newsgroups where xxxx can be vb, vb or csharp Cor "Arne Garvander" <ArneGarvander@xxxxxx> wrote in message news:AEB914D4-F185-4CBA-92F1-DE18F74D16C2@xxxxxx Quote: > Is there a newsgroup for WPF somewhere? > I have a WPF window with a menu. How do I dynamically add user controls > into > my mainwindow after each menu click? > > -- > Arne Garvander > (I program VB.Net for fun and C# to get paid. When get paid, I laugh all > the > way to the bank.) |
My System Specs![]() |
| | #3 (permalink) |
| | Re: WPF I can't find microsoft.public.wpf microsoft.public.net.wpf microsoft.public.net.csharp.wpf Where are the wpf news groups? -- Arne Garvander (I program VB.Net for fun and C# to get paid. When get paid, I laugh all the way to the bank.) "Cor Ligthert[MVP]" wrote: Quote: > Simply the > > public.dotnet.languages.xxxx newsgroups where xxxx can be vb, vb or csharp > > Cor > > "Arne Garvander" <ArneGarvander@xxxxxx> wrote in message > news:AEB914D4-F185-4CBA-92F1-DE18F74D16C2@xxxxxx Quote: > > Is there a newsgroup for WPF somewhere? > > I have a WPF window with a menu. How do I dynamically add user controls > > into > > my mainwindow after each menu click? > > > > -- > > Arne Garvander > > (I program VB.Net for fun and C# to get paid. When get paid, I laugh all > > the > > way to the bank.) > |
My System Specs![]() |
| | #4 (permalink) |
| | Re: WPF Arne, There have been and are newsgroups and forums for all kind of dedicated parts. In those newsgroups you mostly never get an answer because there is almost never somebody looking at that. Cor "Arne Garvander" <ArneGarvander@xxxxxx> wrote in message news A4E5FCF-7218-4A8D-AABF-09E5BE767D12@xxxxxxQuote: >I can't find > microsoft.public.wpf > microsoft.public.net.wpf > microsoft.public.net.csharp.wpf > Where are the wpf news groups? > -- > Arne Garvander > (I program VB.Net for fun and C# to get paid. When get paid, I laugh all > the > way to the bank.) > > > "Cor Ligthert[MVP]" wrote: > Quote: >> Simply the >> >> public.dotnet.languages.xxxx newsgroups where xxxx can be vb, vb or >> csharp >> >> Cor >> >> "Arne Garvander" <ArneGarvander@xxxxxx> wrote in >> message >> news:AEB914D4-F185-4CBA-92F1-DE18F74D16C2@xxxxxx Quote: >> > Is there a newsgroup for WPF somewhere? >> > I have a WPF window with a menu. How do I dynamically add user controls >> > into >> > my mainwindow after each menu click? >> > >> > -- >> > Arne Garvander >> > (I program VB.Net for fun and C# to get paid. When get paid, I laugh >> > all >> > the >> > way to the bank.) >> |
My System Specs![]() |
| | #5 (permalink) |
| | Re: WPF That seems like an empty answer. I give you half a lemon for that -- Arne Garvander (I program VB.Net for fun and C# to get paid. When get paid, I laugh all the way to the bank.) "Cor Ligthert[MVP]" wrote: Quote: > Arne, > > There have been and are newsgroups and forums for all kind of dedicated > parts. > > In those newsgroups you mostly never get an answer because there is almost > never somebody looking at that. > > Cor > > > "Arne Garvander" <ArneGarvander@xxxxxx> wrote in message > news A4E5FCF-7218-4A8D-AABF-09E5BE767D12@xxxxxxQuote: > >I can't find > > microsoft.public.wpf > > microsoft.public.net.wpf > > microsoft.public.net.csharp.wpf > > Where are the wpf news groups? > > -- > > Arne Garvander > > (I program VB.Net for fun and C# to get paid. When get paid, I laugh all > > the > > way to the bank.) > > > > > > "Cor Ligthert[MVP]" wrote: > > Quote: > >> Simply the > >> > >> public.dotnet.languages.xxxx newsgroups where xxxx can be vb, vb or > >> csharp > >> > >> Cor > >> > >> "Arne Garvander" <ArneGarvander@xxxxxx> wrote in > >> message > >> news:AEB914D4-F185-4CBA-92F1-DE18F74D16C2@xxxxxx > >> > Is there a newsgroup for WPF somewhere? > >> > I have a WPF window with a menu. How do I dynamically add user controls > >> > into > >> > my mainwindow after each menu click? > >> > > >> > -- > >> > Arne Garvander > >> > (I program VB.Net for fun and C# to get paid. When get paid, I laugh > >> > all > >> > the > >> > way to the bank.) > >> > >> > |
My System Specs![]() |
| | #6 (permalink) |
| | Re: WPF > That seems like an empty answer. Quote: > I give you half a lemon for that > -- from and you don't believe her. |
My System Specs![]() |
| | #7 (permalink) |
| | Re: WPF On Fri, 24 Apr 2009 14:10:22 -0700, Arne Garvander <ArneGarvander@xxxxxx> wrote: Quote: >Is there a newsgroup for WPF somewhere? >I have a WPF window with a menu. How do I dynamically add user controls into >my mainwindow after each menu click? the properties, and add the control to the appropriate container. Here a custom control is dynamically added to a stackpanel. private void addItemTextControl(ref StackPanel stackPanel, string text) { ComparisonTextControl control = new ComparisonTextControl() { Width = controlWidth, Margin = new Thickness(5, 5, 5, 5) }; control.Text = text; stackPanel.Children.Add(control); } regards A.G. |
My System Specs![]() |
| | #8 (permalink) |
| | Re: WPF I hope you don't tell my mom, that I have been a bad boy. -- Arne Garvander (I program VB.Net for fun and C# to get paid. When get paid, I laugh all the way to the bank.) "Cor Ligthert[MVP]" wrote: Quote: Quote: > > That seems like an empty answer. > > I give you half a lemon for that > > -- > from and you don't believe her. > > > |
My System Specs![]() |