mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
56 lines
995 B
C#
56 lines
995 B
C#
|
|
namespace System.Windows.Forms
|
|
{
|
|
public class HtmlElement
|
|
{
|
|
public void SetAttribute(string attributeName, string value) { }
|
|
}
|
|
|
|
public class MessageBox
|
|
{
|
|
public static void Show(string msg, string title) { }
|
|
}
|
|
|
|
public class Application
|
|
{
|
|
public static void Exit() { }
|
|
}
|
|
|
|
class HtmlDocument
|
|
{
|
|
public void Write(string s) { }
|
|
}
|
|
|
|
class TextBoxBase
|
|
{
|
|
public string Text { get; set; }
|
|
}
|
|
|
|
class TextBox : TextBoxBase
|
|
{
|
|
public char PasswordChar { get; set; }
|
|
public bool UseSystemPasswordChar { get; set; }
|
|
}
|
|
|
|
class RichTextBox : TextBoxBase
|
|
{
|
|
public string Rtf => null;
|
|
public string SelectedText => null;
|
|
public string SelectedRtf => null;
|
|
}
|
|
|
|
class WebBrowser
|
|
{
|
|
public string DocumentText { get; set; }
|
|
public HtmlDocument Document => null;
|
|
}
|
|
|
|
class Form
|
|
{
|
|
}
|
|
|
|
struct EventArgs
|
|
{
|
|
}
|
|
}
|