挂钩或黑客文本框启用属性

时间:2014-09-26 12:45:58

标签: c# wpf textbox hook

我希望能够选择以下屏幕截图中无法选择的数据。我不拥有该应用程序的源代码,旁边的代码只是一个示例,我想知道我是否可以破解/挂钩它。

<TextBox x:Name="TextBoxtest"
         HorizontalAlignment="Left"
         Height="23"
         Margin="76,67,0,0"
         TextWrapping="Wrap"
         Text="Nom"
         VerticalAlignment="Top"
         Width="120"
         IsEnabled="False"/>

http://i.stack.imgur.com/GyriR.png

我想知道是否有可能挂钩或破解它以启用它?

我想要的是让它可以选择。

1 个答案:

答案 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;