这是应该发生的步骤
新的 UC 加载并在我的 exe 中生成证书
该证书的地址显示在文本框中(如下所述)
所有这些步骤都在 UC 加载时发生。
我需要一个复制该文本框路径的复制按钮。
我正在使用下面的代码,但由于 UC 加载复制按钮被禁用。为什么?
<TextBox Grid.Column="1" HorizontalAlignment="Stretch" Name="label1" VerticalAlignment="Stretch" Foreground="#FFF20C0C" IsManipulationEnabled="False" IsTabStop="False" IsUndoEnabled="False" BorderThickness="0" Background="{StaticResource {x:Static SystemColors.ControlBrushKey}}" TextWrapping="Wrap" IsReadOnly="True">
<Button Grid.Row="2" Height="Auto" Width="Auto
" Command="Copy" Content="Copy certificate address" HorizontalAlignment="Left" VerticalAlignment="Center" CommandTarget="{Binding ElementName=label1}"/>