2

我有一个这样的 xaml 代码

<Grid>
    <... some grid row and column definitions .../>

    <ScrollViewer Grid.Column="1" VerticalScrollBarVisibility="Auto">
        <TextBlock "some attribute" />
    </ScrollViewer>

</Grid>

我不知道如何Textblock配合Scrollviewerin C#。我想TextblockScrollviewer. 如果您有其他想法,请告诉我。

非常感谢您的帮助。:D

4

1 回答 1

6

只需使用 Content 属性

            var myScrollViewer = new ScrollViewer();
            myScrollViewer.Content= new TextBlock();

编辑

或与 XAML 结合使用

XAML

<ScrollViewer Name="myScrollViewer " Grid.Column="1" VerticalScrollBarVisibility="Auto"/>

背后的代码

            myScrollViewer.Content= new TextBlock(); // or what ever you want to add :-)
于 2013-04-25T14:52:39.570 回答