Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 266c6ee507 | |||
| 2954cb8678 | |||
| 4b75381cb9 | |||
| 90ce361ea5 | |||
| 508a1c48e3 | |||
| f98471e4f4 |
@ -4,6 +4,27 @@
|
||||
Title="Untitled - Notepad"
|
||||
Width="600" Height="400">
|
||||
|
||||
<Window.Styles>
|
||||
<Style Selector="Menu">
|
||||
<Setter Property="Background" Value="#D3D3D3"/>
|
||||
</Style>
|
||||
<Style Selector="MenuItem">
|
||||
<Setter Property="Background" Value="#D3D3D3"/>
|
||||
<Setter Property="Foreground" Value="Black"/>
|
||||
</Style>
|
||||
<Style Selector="MenuItem:pointerover /template/ Border#PART_LayoutRoot">
|
||||
<Setter Property="Background" Value="#A9A9A9"/>
|
||||
</Style>
|
||||
<Style Selector="MenuItem:open /template/ Popup#PART_Popup > Border">
|
||||
<Setter Property="Background" Value="#D3D3D3"/>
|
||||
<Setter Property="BorderBrush" Value="#A9A9A9"/>
|
||||
<Setter Property="BorderThickness" Value="1"/>
|
||||
</Style>
|
||||
<Style Selector="Separator">
|
||||
<Setter Property="Background" Value="#A9A9A9"/>
|
||||
</Style>
|
||||
</Window.Styles>
|
||||
|
||||
<DockPanel>
|
||||
<!-- Menu Bar -->
|
||||
<Menu DockPanel.Dock="Top">
|
||||
@ -29,7 +50,7 @@
|
||||
<MenuItem Header="F_ormat">
|
||||
<MenuItem Header="_Word Wrap" x:Name="WordWrapMenuItem" Click="OnWordWrapToggle">
|
||||
<MenuItem.Icon>
|
||||
<CheckBox x:Name="WordWrapCheckBox" IsChecked="True" IsHitTestVisible="False"/>
|
||||
<CheckBox x:Name="WordWrapCheckBox" IsChecked="False" IsHitTestVisible="False"/>
|
||||
</MenuItem.Icon>
|
||||
</MenuItem>
|
||||
</MenuItem>
|
||||
@ -43,7 +64,7 @@
|
||||
<TextBox x:Name="EditorTextBox"
|
||||
AcceptsReturn="True"
|
||||
AcceptsTab="True"
|
||||
TextWrapping="Wrap"
|
||||
TextWrapping="NoWrap"
|
||||
VerticalAlignment="Stretch"
|
||||
HorizontalAlignment="Stretch"
|
||||
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
||||
|
||||
@ -294,7 +294,17 @@ namespace NotePad
|
||||
var textBox = this.FindControl<TextBox>("EditorTextBox")!;
|
||||
|
||||
checkBox.IsChecked = !checkBox.IsChecked;
|
||||
textBox.TextWrapping = checkBox.IsChecked == true ? TextWrapping.Wrap : TextWrapping.NoWrap;
|
||||
|
||||
if (checkBox.IsChecked == true)
|
||||
{
|
||||
textBox.TextWrapping = TextWrapping.Wrap;
|
||||
ScrollViewer.SetHorizontalScrollBarVisibility(textBox, Avalonia.Controls.Primitives.ScrollBarVisibility.Disabled);
|
||||
}
|
||||
else
|
||||
{
|
||||
textBox.TextWrapping = TextWrapping.NoWrap;
|
||||
ScrollViewer.SetHorizontalScrollBarVisibility(textBox, Avalonia.Controls.Primitives.ScrollBarVisibility.Auto);
|
||||
}
|
||||
}
|
||||
|
||||
// Edit Menu
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||||
<ApplicationIcon>img\notepad-icon.ico</ApplicationIcon>
|
||||
<Version>0.1.15</Version>
|
||||
<Version>0.1.17</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
BIN
NotePad/img/notepad-screenshot-linux.png
Normal file
BIN
NotePad/img/notepad-screenshot-linux.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
NotePad/img/notepad-screenshot-win11.png
Normal file
BIN
NotePad/img/notepad-screenshot-win11.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 15 KiB |
@ -2,7 +2,9 @@
|
||||
|
||||
A simple cross-platform text editor built with Avalonia UI and .NET 8.
|
||||
|
||||

|
||||
| Windows | Linux |
|
||||
|-----------------------------------------------------------------| ----- |
|
||||
|  |  |
|
||||
|
||||
## Installation
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user