おはようコミュニティ
フォームの真ん中に長方形を描きたいです。また、この長方形の下にテキストを描画したいと思います。
問題はないと思うテキストで、次のコードを使用します。
Dim sf As New StringFormat
sf.LineAlignment = StringAlignment.Center
sf.Alignment = StringAlignment.Center
' Line with the problem
e.Graphics.FillRectangle(Brushes.Beige, CInt(Local_Form.Width / 2), CInt(Local_Form.Height / 2), 200, 100)
e.Graphics.DrawString(Local_Text, _
New Font(MyCloud.Settings.Settings_Forms.Font.Name, 30), _
Brushes.GreenYellow, _
Local_Form.Width / 2, Local_Form.Height / 2, sf)
しかし、長方形に問題があります。誰かが私を助けることができますか?