将数据库中的文本数据显示到 WPF RichTextBox 中

Display text data from a database into a WPF RichTextBox

我有以下用户控件 xaml,包含多个 RichTextBox 控件:

<UserControl x:Class="Organizer.UserControls.RowViewUserControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:Organizer.UserControls"
             xmlns:viewmodels="clr-namespace:Organizer.ViewModels"
             mc:Ignorable="d" 
             d:DesignHeight="450" d:DesignWidth="800"
             x:Name="ucRow">

    <DockPanel Margin="2 2 2 2" Grid.Row="2" Grid.Column="1">

        <RichTextBox x:Name="RTBMinus5" Margin="1 0 0 3" DockPanel.Dock="Top" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBMinus4" Margin="1 0 0 3" DockPanel.Dock="Top" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBMinus3" Margin="1 0 0 3" DockPanel.Dock="Top" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBMinus2" Margin="1 0 0 3" DockPanel.Dock="Top" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBMinus1" Margin="1 0 0 3" DockPanel.Dock="Top" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>

        <RichTextBox x:Name="RTBPlus5" Margin="1 0 0 3" DockPanel.Dock="Bottom" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBPlus4" Margin="1 0 0 3" DockPanel.Dock="Bottom" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBPlus3" Margin="1 0 0 3" DockPanel.Dock="Bottom" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBPlus2" Margin="1 0 0 3" DockPanel.Dock="Bottom" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>
        <RichTextBox x:Name="RTBPlus1" Margin="1 0 0 3" DockPanel.Dock="Bottom" Height="{Binding RowHeightSliderValue}" BorderBrush="Gray" Background="Black" Foreground="Gray" FontSize="14"/>

        <RichTextBox Name="RTBSelected" Margin="1 0 0 3" BorderBrush="Purple" Background="Black" Foreground="White" FontSize="18" />

    </DockPanel>
</UserControl>

... 以及下面的代码,其中我定义了 ShowTextInRow(string textstring) 方法,可以从程序中的其他地方调用该方法以获取文本字符串并将其显示到名为 "RTBSelected" 的 RichTextBox 中:

using System.IO;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;

namespace Organizer.UserControls
{
    public partial class RowViewUserControl : UserControl
    {
        public RowViewUserControl()
        {
            InitializeComponent();
        }

        public static void ShowTextInRow(string textstring)
        {
            // Source: 
            byte[] byteArray = Encoding.ASCII.GetBytes(textstring);
            using (MemoryStream ms = new MemoryStream(byteArray))
            {
                TextRange tr = new TextRange(RTBSelected.Document.ContentStart, RTBSelected.Document.ContentEnd);
                tr.Load(ms, DataFormats.Rtf);
            }
        }
    }
}

我遇到了以下问题:如果我将 "ShowTextInRow()" 方法声明为静态方法,则代码隐藏无法通过其名称 "RTBSelected" 识别对 RichTextBox 的引用。另一方面,如果我从 "ShowTexdInRow()" 方法中删除 'static' 声明,代码隐藏似乎通过其名称 "RTBSelected" 识别 RichTextBox 但我不能再从其他地方调用此方法我的程序。

抱歉,如果我错过了一些非常基本的东西 - 我是 C#/WPF 的新手。在此先感谢您的支持。

因为此操作是 UserControl 的一部分,所以您不想将其称为静态操作。将其称为静态会给您带来其他错误,因为您会尝试加载到不存在的 RichTextBox 中。 UserControl 必须先初始化,然后再对其进行任何操作。

删除静态声明并通过首先初始化 UserControl 从程序的其他区域调用它。

删除了静态声明:

public void ShowTextInRow(string textstring)
{
      // Source: 
      byte[] byteArray = Encoding.ASCII.GetBytes(textstring);
      using (MemoryStream ms = new MemoryStream(byteArray))
      {
           TextRange tr = new TextRange(RTBSelected.Document.ContentStart, RTBSelected.Document.ContentEnd);
           tr.Load(ms, DataFormats.Rtf);
      }
}

从命名空间内的其他区域调用:

RowViewUserControl rvuc = new RowViewUserControl();
rvuc.ShowTextInRow("Hello World");