本文介绍了如何在c#(win app)中创建Vertical TextBox?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的朋友们!

我想在设计中创建垂直文本框或运行时用户在运行时键入它

请求帮助我

hi my friends!
I want create vertical Text Box in design or run time that user in run time type in it
pleas help me

推荐答案

<TextBox Height="150" Width="150" Background="LightGray">
           <TextBox.LayoutTransform>
               <TransformGroup>
                   <TransformGroup.Children>
                       <RotateTransform Angle="90"/>
                   </TransformGroup.Children>
               </TransformGroup>
           </TextBox.LayoutTransform>
       </TextBox>





不是吗?如果我犯了错误,请告诉我。我会尽力帮助你。

好​​运



isn''t it ? if i make a mistake,please tell me.i will try to help you.
Good Luck


这篇关于如何在c#(win app)中创建Vertical TextBox?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 02:57