|
59 | 59 | <RowDefinition Height="Auto"/>
|
60 | 60 | <RowDefinition/>
|
61 | 61 | </Grid.RowDefinitions>
|
62 |
| - <local:TextInput Label="Title |
63 |
| - " TextContent="{Binding SelectedLesson.Title, ElementName=Self, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> |
| 62 | + <local:TextInput Label="Title" |
| 63 | + TextContent="{Binding SelectedLesson.Title, ElementName=Self, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> |
| 64 | + <CheckBox Content="Skip" HorizontalAlignment="Right" Margin="0,6,0,0" |
| 65 | + IsChecked="{Binding SelectedLesson.Skip, ElementName=Self, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> |
64 | 66 | <local:TextInput Grid.Row="1" Label="Background"
|
65 | 67 | TextContent="{Binding SelectedLesson.Background, ElementName=Self, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
|
66 | 68 | <local:TextInput Grid.Row="2" Label="Docs Path (from root on docs.json-everything.net)"
|
|
78 | 80 | CodeContent="{Binding SelectedLesson.InitialCode, ElementName=Self, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
|
79 | 81 | <local:CodeInput Grid.Row="1" Label="Solution" Margin="0,5,5,5"
|
80 | 82 | CodeContent="{Binding SelectedLesson.Solution, ElementName=Self, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
|
81 |
| - <local:CodeInput Grid.Row="2" Label="Output" Margin="0,5,5,0" IsEnabled="False" |
| 83 | + <local:CodeInput Grid.Row="2" Label="Output" Margin="0,5,5,0" IsReadOnly="False" |
82 | 84 | CodeContent="{Binding ValidationOutput, ElementName=Self}"/>
|
83 | 85 | <Button Grid.Row="1" Content="Copy from above" Click="CopyInitialToSolution"
|
84 | 86 | HorizontalAlignment="Right" VerticalAlignment="Top"
|
|
0 commit comments