<bdo id='6MZpv'></bdo><ul id='6MZpv'></ul>

<small id='6MZpv'></small><noframes id='6MZpv'>

<tfoot id='6MZpv'></tfoot><legend id='6MZpv'><style id='6MZpv'><dir id='6MZpv'><q id='6MZpv'></q></dir></style></legend>
  • <i id='6MZpv'><tr id='6MZpv'><dt id='6MZpv'><q id='6MZpv'><span id='6MZpv'><b id='6MZpv'><form id='6MZpv'><ins id='6MZpv'></ins><ul id='6MZpv'></ul><sub id='6MZpv'></sub></form><legend id='6MZpv'></legend><bdo id='6MZpv'><pre id='6MZpv'><center id='6MZpv'></center></pre></bdo></b><th id='6MZpv'></th></span></q></dt></tr></i><div id='6MZpv'><tfoot id='6MZpv'></tfoot><dl id='6MZpv'><fieldset id='6MZpv'></fieldset></dl></div>

        UWP C# 滚动到文本框的底部

        时间:2023-09-15
      1. <i id='G6UXs'><tr id='G6UXs'><dt id='G6UXs'><q id='G6UXs'><span id='G6UXs'><b id='G6UXs'><form id='G6UXs'><ins id='G6UXs'></ins><ul id='G6UXs'></ul><sub id='G6UXs'></sub></form><legend id='G6UXs'></legend><bdo id='G6UXs'><pre id='G6UXs'><center id='G6UXs'></center></pre></bdo></b><th id='G6UXs'></th></span></q></dt></tr></i><div id='G6UXs'><tfoot id='G6UXs'></tfoot><dl id='G6UXs'><fieldset id='G6UXs'></fieldset></dl></div>

              <legend id='G6UXs'><style id='G6UXs'><dir id='G6UXs'><q id='G6UXs'></q></dir></style></legend>

              • <bdo id='G6UXs'></bdo><ul id='G6UXs'></ul>

                <small id='G6UXs'></small><noframes id='G6UXs'>

                <tfoot id='G6UXs'></tfoot>
                    <tbody id='G6UXs'></tbody>
                  本文介绍了UWP C# 滚动到文本框的底部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何滚动到 UWP 应用的文本框底部?

                  How do you scroll to the bottom of a TextBox for a UWP app?

                  随着我向 UWP 的过渡,这是尚未直截了当的问题之一.

                  With my transition to UWP, this has been one of the questions that hasn't been straight-forward.

                  我以前可以用这个:

                  textBox.SelectionStart = textBox.TextLength;
                  textBox.ScrollToCaret();
                  

                  但是,这不适用于 UWP 应用

                  But, this doesn't work for UWP apps

                  推荐答案

                  如果有人需要在 UWP 应用中滚动到 TextBox 的底部:

                  If anyone needs to scroll to the bottom of a TextBox in UWP apps:

                  https://code.msdn.microsoft.com/windowsapps/How-to-scroll-to-the-a8ea5867

                  privatevoidTextBox_TextChanged(objectsender,TextChangedEventArgse)
                  {
                      vargrid=(Grid)VisualTreeHelper.GetChild(textBox1,0);
                      for(vari=0;i<=VisualTreeHelper.GetChildrenCount(grid)-1;i++)
                          {
                              objectobj=VisualTreeHelper.GetChild(grid,i);
                              if(!(objisScrollViewer))continue;
                              ((ScrollViewer)obj).ChangeView(0.0f,((ScrollViewer)obj).ExtentHeight,1.0f);
                              break;
                          }
                      }
                  }
                  

                  其中 textBox1 是您要滚动到底部的文本框.

                  where textBox1 is the TextBox you want to scroll to the bottom.

                  这篇关于UWP C# 滚动到文本框的底部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在 Windows 10 通用应用程序中使用 isTypePresent 检测相机是否可用 下一篇:Windows 10 Home/Pro/Enterprise 上的 IIS 并发请求限制

                  相关文章

                • <small id='JgMdG'></small><noframes id='JgMdG'>

                    1. <legend id='JgMdG'><style id='JgMdG'><dir id='JgMdG'><q id='JgMdG'></q></dir></style></legend>
                      <i id='JgMdG'><tr id='JgMdG'><dt id='JgMdG'><q id='JgMdG'><span id='JgMdG'><b id='JgMdG'><form id='JgMdG'><ins id='JgMdG'></ins><ul id='JgMdG'></ul><sub id='JgMdG'></sub></form><legend id='JgMdG'></legend><bdo id='JgMdG'><pre id='JgMdG'><center id='JgMdG'></center></pre></bdo></b><th id='JgMdG'></th></span></q></dt></tr></i><div id='JgMdG'><tfoot id='JgMdG'></tfoot><dl id='JgMdG'><fieldset id='JgMdG'></fieldset></dl></div>

                        <bdo id='JgMdG'></bdo><ul id='JgMdG'></ul>
                      <tfoot id='JgMdG'></tfoot>