0
我可以找到大量示例來調整文本框的大小以適應其內容,但不是相反。我有一個WinForm「彈出」,它是一個尺寸的大小,幷包含一個壁紙縮略圖和一個文本框,它將保存壁紙標題。有時,標題可以很短,或只要它脫落形式的末尾:將內容自動調整爲固定大小文本框控件
表單被填充有來自另一個方法傳遞的信息:
this.BringToFront();
this.txtWallpaperTitle.Text = title;
this.lnkWallpaper.Text = "http://www.reddit.com/" + threadid;
Bitmap img = new Bitmap(Properties.Settings.Default.currentWallpaperFile);
this.imgWallpaper.BackgroundImage = img;
this.imgWallpaper.BackgroundImageLayout = ImageLayout.Stretch;
目前通過設計器設置TextBox
文本sdize。有沒有什麼辦法可以自動調整文本的大小,使其適合TextBox
控件?