ShiftOS-TheRevival-Old/ShiftOS-TheRevival/MainForms/Applications/Universal/Knowledge Input/Uni_KnowledgeInput.vb

13 lines
584 B
VB.net
Raw Normal View History

2022-11-23 01:36:50 +00:00
Public Class Uni_KnowledgeInput
2022-11-23 03:32:09 +00:00
Dim PrevWidthTxt_InputWord As Integer
2022-11-23 01:36:50 +00:00
2022-11-23 03:32:09 +00:00
Private Sub Uni_KnowledgeInput_Load(sender As Object, e As EventArgs) Handles MyBase.Load
PrevWidthTxt_InputWord = txt_InputWord.Width
End Sub
Private Sub Uni_KnowledgeInput_Resize(sender As Object, e As EventArgs) Handles MyBase.Resize
'Dim Txt_InputTextWidthRatio As Double = (txt_InputWord.Width / PrevWidthTxt_InputWord)
'txt_InputWord.Width = txt_InputWord.Width * Txt_InputTextWidthRatio
'PrevWidthTxt_InputWord = txt_InputWord.Width
End Sub
2022-11-23 01:36:50 +00:00
End Class