jdhardy / IronPython.VisualStudio
IronPython extensions for Visual Studio 2010. This project has been superseded by IronPython Tools for Visual Studio (http://bit.ly/aTrzL0).
Clone this repository (size: 98.6 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/jdhardy/ironpython.visualstudio/
| commit 15: | 75c9aa9ffaba |
| parent 14: | d42a38c7e979 |
| branch: | default |
Set repl background to White.
3 months ago
Changed (Δ0 bytes):
raw changeset »
IronPython.VisualStudio.Repl/ReplWindow.xaml (2 lines added, 2 lines removed)
Up to file-list IronPython.VisualStudio.Repl/ReplWindow.xaml:
1 |
1 |
<UserControl x:Class="IronPython.VisualStudio.Repl.ReplWindow" |
2 |
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" MinWidth="400" MinHeight="100" FontFamily="Consolas" FontSize="11" |
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" MinWidth="400" MinHeight="100" FontFamily="Consolas" FontSize="11" Background="White"> |
|
4 |
4 |
<Grid Name="outerGrid"> |
5 |
5 |
<Grid.ColumnDefinitions> |
6 |
6 |
<ColumnDefinition Width="Auto" /> |
18 |
18 |
</FlowDocument> |
19 |
19 |
</RichTextBox> |
20 |
20 |
<TextBox Name="replInput" FontFamily="Consolas" AcceptsReturn="False" MaxLines="1" IsUndoEnabled="False" Grid.Column="1" Grid.Row="1" PreviewKeyUp="replInput_PreviewKeyUp" AcceptsTab="True" IsEnabled="False" /> |
21 |
<TextBlock Name="replPrompt" HorizontalAlignment="Right" Grid.Row="1" VerticalAlignment="Center" |
|
21 |
<TextBlock Name="replPrompt" HorizontalAlignment="Right" Grid.Row="1" VerticalAlignment="Center">>>></TextBlock> |
|
22 |
22 |
</Grid> |
23 |
23 |
</UserControl> |
