Where to place WPF specific question?

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
 
K

Kevin Spencer

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

--
HTH,

Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
 
S

sloan

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.
 
K

Kevin Spencer

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
 
I

infalanda

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--
 

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

Top