티스토리 뷰
내용에 따라서 자동으로 크기가 변하는 RichTextBox 샘플코드이다.
The key is handling the ContentsResized event on the RichTextBox (doesn't exist on a TextBox).
The ContentsResizedEventArgs has a NewRectangle property which will give you the desired size.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace RichTextBoxAutoResizeSample
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void richTextBox1_ContentsResized(object sender, ContentsResizedEventArgs e)
{
this.richTextBox1.Height = e.NewRectangle.Height + 5;
}
}
}
The key is handling the ContentsResized event on the RichTextBox (doesn't exist on a TextBox).
The ContentsResizedEventArgs has a NewRectangle property which will give you the desired size.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace RichTextBoxAutoResizeSample
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void richTextBox1_ContentsResized(object sender, ContentsResizedEventArgs e)
{
this.richTextBox1.Height = e.NewRectangle.Height + 5;
}
}
}
'Code > C#' 카테고리의 다른 글
AxWebBrowser.ReadyState 샘플코드 (0) | 2008.04.16 |
---|---|
WebBrowser.ReadyState 샘플코드 (0) | 2008.04.11 |
iTextSharp 샘플코드 - Hello World (0) | 2008.04.08 |
[C#] Object Initializer 사용법 샘플 코드 (0) | 2008.02.11 |
[C#] 간단한 Object Initializer 샘플 코드 (0) | 2008.02.11 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Rollback Rx
- Service pack
- 스크린캡쳐
- c#
- READYSTATE_COMPLETE
- Microsoft
- DotNetMagic
- tagREADYSTATE
- Sample Code
- AdSense숨기기
- 애드센스숨기기
- windows
- java
- WinAutomation
- jre
- 애드센스감추기
- 유틸리티
- AdSense감추기
- download.com
- Phalanger
- Regular Expressions
- AxWebBrowser
- iText
- .net framework
- iTextSharp
- registry
- Automation
- autohotkey
- ScreenHunter
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
글 보관함