Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MFC の場合: CBrush を使用する"CBrush brush; CDC* pDC = GetDC();pDC->Ellipse(start.x,start.y,end.x,end.y);", と、楕円の内部の色は何色になりますか?
"CBrush brush; CDC* pDC = GetDC();pDC->Ellipse(start.x,start.y,end.x,end.y);",
ブラシを使用していないか、何も割り当てていません。それは単なる変数宣言です。これは何の役にも立たないので、 でブラシに設定された色が表示されpDCます。
pDC
何も変更していない場合、省略記号の内部は、 のデバイス コンテキストのデフォルトの背景色になりますpDC。