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

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

      1. <small id='eHRMn'></small><noframes id='eHRMn'>

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

        如何在 Silverlight/C# 中访问 ListBox 控件的 ScrollViewer 元素?

        How do you access the ScrollViewer element of a ListBox control in Silverlight/C#?(如何在 Silverlight/C# 中访问 ListBox 控件的 ScrollViewer 元素?)

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

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

          • <tfoot id='pdpKd'></tfoot>

              <tbody id='pdpKd'></tbody>

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

                1. 本文介绍了如何在 Silverlight/C# 中访问 ListBox 控件的 ScrollViewer 元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我希望从 C# 动态更改 Silverlight ListBox 的滚动位置,我需要知道如何从 C# 访问 ListBox 控件的 ScrollViewer 元素?

                  I wish to dynamically change the scroll position of a Silverlight ListBox from C#, and I need to know how to access the ScrollViewer element of a ListBox control from C#?

                  谢谢各位,杰夫

                  推荐答案

                  在继承自 ListBox 类的类中,您可以使用 Protected GetTemplateChild():

                  From within a class that inherits from the ListBox class, you can use the Protected GetTemplateChild():

                  var myScrollviewer = myListBox.GetTemplateChild("ScrollViewer") as ScrollViewer;

                  如果您想从 ListBox 外部访问它,那么通过 Property 公开 ScrollViewer 应该可以工作,再次通过继承.

                  If you want to access this from outside the ListBox, then exposing the ScrollViewer via a Property should work, again through inheritance.

                  CAVEAT:如果您设置了自己的自定义模板,则此 Scrollviewer 可能不存在.您可以使用模板 Scrollviewer 名称而不是上述方法中的ScrollViewer".

                  CAVEAT: If you have set your own custom template, then this Scrollviewer may not exist. You can use the templates Scrollviewer name instead of the "ScrollViewer" in the method above.

                  这篇关于如何在 Silverlight/C# 中访问 ListBox 控件的 ScrollViewer 元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Populate ListBox with a IEnumrable on another thread (winforms)(在另一个线程(winforms)上使用 IEnumrable 填充 ListBox)
                  listbox selected item give me quot; System.Data.DataRowViewquot; , C# winforms(列表框选择的项目给我quot;System.Data.DataRowView, C# Winforms)
                  Cannot remove items from ListBox(无法从列表框中删除项目)
                  Preventing ListBox scrolling to top when updated(更新时防止列表框滚动到顶部)
                  Drag and drop from list to canvas on windows phone with MVVM(使用 MVVM 在 Windows 手机上从列表拖放到画布)
                  Deselection on a WPF listbox with extended selection mode(具有扩展选择模式的 WPF 列表框上的取消选择)

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

                          • <bdo id='JgrAB'></bdo><ul id='JgrAB'></ul>
                            <tfoot id='JgrAB'></tfoot>

                              <tbody id='JgrAB'></tbody>

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

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