Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear all I have a problem. I was created a triangle using LineTo and MoveTo methods. Now I am trying to fill that triangle by solid color using FillRgn of CDC class. But WinCE does not support this method. Can anybody tell me the other way to fill that triangle? Here is my code:
C++
for(unsigned short uCntr = 0; uCntr<=tRcsStructure.tSysSetting.ucMaxStationNumbers-1; uCntr++)
{
	unsigned short x_pos = 45;
	m_PenColor.CreatePen(PS_SOLID,2,m_dwColour[uCntr]);
	pDC.SelectObject(m_PenColor);pDC.MoveTo(63,(135 + (uCntr * x_pos)));
        pDC.LineTo(96,(135 + (uCntr * x_pos)));
        pDC.MoveTo(63,(117 + (uCntr * x_pos)));
        pDC.LineTo(63,(135 + (uCntr * x_pos)));
        pDC.MoveTo(63,(117 + (uCntr * x_pos)));
        pDC.LineTo(96,(135 + (uCntr * x_pos)));
}


Currently I am using eVC 4.0.
Posted
Updated 4-Jun-12 8:18am
v2

1 solution

I have no experience in WinCE, but I would use CDC::Polygon, which automatically fills the polygon with the current brush. So create a brush with the same color as your solid pen, select it into the DC and then draw a polygon with the three points of your triangle. (Of course you know that a triangle is a special case of a polygon.)
 
Share this answer
 
Comments
Vaibhav_J_Jaiswal 2-Jun-12 8:44am    
Shall we draw a triangle using polygon method?
nv3 2-Jun-12 9:29am    
Exactly.
Vaibhav_J_Jaiswal 4-Jun-12 1:48am    
Thank you for your help. My problem is solved using Polygon method.
Vaibhav_J_Jaiswal 5-Jun-12 3:26am    
Is this possible to give the border color to the polygon? If yes, then how? Please help me I am trying the same.
nv3 5-Jun-12 3:31am    
Of course, your current pen determines the border color.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900