FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
NavisPythonShell/PythonConsoleControl/PythonConsolePad.cs at master · dimven/NavisPythonShell · GitHub
dimven
/
NavisPythonShell
Public
Notifications
You must be signed in to change notification settings
Fork
19
Star
84
Code
Issues
11
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
NavisPythonShell
/
PythonConsoleControl
/
PythonConsolePad.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
48 lines (41 loc) · 1.06 KB
Breadcrumbs
NavisPythonShell
/
PythonConsoleControl
/
PythonConsolePad.cs
Copy path
File metadata and controls
48 lines (41 loc) · 1.06 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2010 Joe Moorhouse
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
Linq
;
using
System
.
Text
;
using
ICSharpCode
.
AvalonEdit
;
using
System
.
Windows
.
Media
;
namespace
PythonConsoleControl
{
public
class
PythonConsolePad
{
PythonTextEditor
pythonTextEditor
;
TextEditor
textEditor
;
PythonConsoleHost
host
;
public
PythonConsolePad
(
)
{
textEditor
=
new
TextEditor
(
)
;
pythonTextEditor
=
new
PythonTextEditor
(
textEditor
)
;
host
=
new
PythonConsoleHost
(
pythonTextEditor
)
;
host
.
Run
(
)
;
textEditor
.
FontFamily
=
new
FontFamily
(
"Consolas"
)
;
textEditor
.
FontSize
=
12
;
}
public
TextEditor
Control
{
get
{
return
textEditor
;
}
}
public
PythonConsoleHost
Host
{
get
{
return
host
;
}
}
public
PythonConsole
Console
{
get
{
return
host
.
Console
;
}
}
public
void
Dispose
(
)
{
host
.
Dispose
(
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL