Where to place WPF specific question?

  • Thread starter Thread starter Alex74
  • Start date Start date
A

Alex74

Hi!

I've some complicated WPF specific question, but don't have to found
any WPF specific newsgroup.
Is it possible to ask here or can somebody recommend an WPF newsgroup?

Alex
 
WPF is supported in Visual Studio 2008 and Expression Blend products.

--
HTH,

Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
 
You can try
microsoft.public.windows.developer.winfx.avalon

but the online forums for
WCF and/or WPF (yes, I read your post)...are probably more active.

WPF forums site:microsoft.com

google that and you'll find the forum.
 
Hi Alex,

I haven't seen your original question, other than your question about where
to ask for information. And I doubt that I could answer it, as I have only
played a little with WPF at this point.

--
HTH,

Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
 
The question is very simple.
How can I do the same thing (example from internet):
glBegin(GL_TRIANGLES); // Begin Drawing Triangles

glColor3f(1.0f,0.0f,0.0f); // Set The Color To Red
glVertex3f( 0.0f, 1.0f, 0.0f); // Move Up One Unit From Center
(Top Point)

glColor3f(0.0f,1.0f,0.0f); // Set The Color To Green
glVertex3f(-1.0f,-1.0f, 0.0f); // Left And Down One Unit (Bottom
Left)

glColor3f(0.0f,0.0f,1.0f); // Set The Color To Blue
glVertex3f( 1.0f,-1.0f, 0.0f); // Right And Down One Unit (Bottom
Right)

glEnd();

with WPF?
There are some possibilities to use GradientBrush (with 'Stops'), but
how I can interpolate color between some (random created) points?

Many thanks in advice.

--Alex--
 
Back
Top