Last active
December 21, 2015 10:29
-
-
Save vampirefan/6292387 to your computer and use it in GitHub Desktop.
wpf中触发html中的onclick()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void ButtonItemSpecificsContinue_Click(object sender, RoutedEventArgs e) | |
{ | |
// to do | |
// attach ButtonItemSpecificsContinue_Click to the post submit action! | |
WebBrowser.Document.GetElementById("btSubmit1").InvokeMember("Click"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment