/*
namespace:System
Int To Double -> Convert.ToDouble(int or double)
Double to Int -> Convert.ToInt32(double)
*/
class TrisWidthHeight : Form
{
int titledepth, widthdepth, heightdepth;
public TrisWidthHeight()
{
titledepth = this.Height - this.ClientRectangle.Height;
titlewidth = Convert.ToInt32(Convert.ToDouble(titledepth / 10.0)) * 7
titleheight = Convert.ToInt32(Convert.ToDouble(titledepth / 10.0)) * 4
this.Width = titlewidth;
this.Height = titleheight;
}
'c# 언어 > 초급과정' 카테고리의 다른 글
ToInt32(String) 의 예외처리 (0) | 2022.03.29 |
---|---|
특정 윈도우 Application에 Hook F5 Key 메세지 보내기 (0) | 2022.03.29 |
1Minute 후에 프로그램 종료하는 간단 예제 (0) | 2022.03.28 |
재정의할 적절한 메서드를 찾을 수 없습니다. (0) | 2022.03.25 |
Form상속의 극단적인 예 (0) | 2022.03.18 |