我希望能够选择以下屏幕截图中无法选择的数据。我不拥有该应用程序的源代码,旁边的代码只是一个示例,我想知道我是否可以破解/挂钩它。
<TextBox x:Name="TextBoxtest"
HorizontalAlignment="Left"
Height="23"
Margin="76,67,0,0"
TextWrapping="Wrap"
Text="Nom"
VerticalAlignment="Top"
Width="120"
IsEnabled="False"/>
我想知道是否有可能挂钩或破解它以启用它?
我想要的是让它可以选择。
答案 0 :(得分:0)
将IsEnabled属性设置为True,
<TextBox Id="TextBoxtest" x:Name="TextBoxtest" HorizontalAlignment="Left" Height="23" Margin="76,67,0,0" TextWrapping="Wrap" Text="Nom" VerticalAlignment="Top" Width="120" IsEnabled="True"/>
或者按编码,试试这个,
TextBoxtest.Enabled = true;