WPF

  • Thread starter Thread starter Arne Garvander
  • Start date Start date
A

Arne Garvander

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?
 
Simply the

public.dotnet.languages.xxxx newsgroups where xxxx can be vb, vb or csharp

Cor
 
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.)
 
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
 
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.)
 
That seems like an empty answer.
I give you half a lemon for that
--
Are you telling that too your mom as well when you ask where babies come
from and you don't believe her.
 
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?

It is not all that different from winforms. Create the control, set
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.
 
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.)
 
Back
Top