mirror of https://github.com/xfarrow/MyNotepad.git
update
This commit is contained in:
parent
ddb4305c77
commit
e8de659c5f
Binary file not shown.
|
@ -1,12 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using Microsoft.VisualBasic;
|
|
||||||
|
|
||||||
|
|
||||||
using System.Collections;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace MyNotepad
|
namespace MyNotepad
|
||||||
|
@ -59,8 +54,6 @@ namespace MyNotepad
|
||||||
{
|
{
|
||||||
// Nothing happens
|
// Nothing happens
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pulsante "salva con nome"
|
// Pulsante "salva con nome"
|
||||||
|
@ -135,9 +128,8 @@ namespace MyNotepad
|
||||||
// Mostra o nascondi barra di stato
|
// Mostra o nascondi barra di stato
|
||||||
private void checkbox_barra_di_stato_Click(object sender, EventArgs e)
|
private void checkbox_barra_di_stato_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (barra_di_stato.Visible == true) barra_di_stato.Visible = false;
|
if (barra_di_stato.Visible) barra_di_stato.Visible = false;
|
||||||
else barra_di_stato.Visible = true;
|
else barra_di_stato.Visible = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void selezionaTuttoToolStripMenuItem_Click(object sender, EventArgs e)
|
private void selezionaTuttoToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
@ -317,15 +309,15 @@ namespace MyNotepad
|
||||||
|
|
||||||
public void vaiARigo(int rigo)
|
public void vaiARigo(int rigo)
|
||||||
{
|
{
|
||||||
int indice = testo_notepad.GetFirstCharIndexFromLine(rigo - 1); //(gli umani contano da 1)
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
int indice = testo_notepad.GetFirstCharIndexFromLine(rigo - 1); //(gli umani contano da 1)
|
||||||
testo_notepad.Select(indice, 0);
|
testo_notepad.Select(indice, 0);
|
||||||
testo_notepad.ScrollToCaret();
|
testo_notepad.ScrollToCaret();
|
||||||
}
|
}
|
||||||
catch (ArgumentOutOfRangeException)
|
catch (ArgumentOutOfRangeException)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Numero di riga maggiore del numero di righe totali");
|
MessageBox.Show("Numero di riga non valido");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -77,19 +77,19 @@
|
||||||
<Compile Include="MainForm.Designer.cs">
|
<Compile Include="MainForm.Designer.cs">
|
||||||
<DependentUpon>MainForm.cs</DependentUpon>
|
<DependentUpon>MainForm.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Form2.cs">
|
<Compile Include="VaiAllaRigaForm.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Form2.Designer.cs">
|
<Compile Include="VaiAllaRigaForm.Designer.cs">
|
||||||
<DependentUpon>Form2.cs</DependentUpon>
|
<DependentUpon>VaiAllaRigaForm.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<EmbeddedResource Include="MainForm.resx">
|
<EmbeddedResource Include="MainForm.resx">
|
||||||
<DependentUpon>MainForm.cs</DependentUpon>
|
<DependentUpon>MainForm.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Form2.resx">
|
<EmbeddedResource Include="VaiAllaRigaForm.resx">
|
||||||
<DependentUpon>Form2.cs</DependentUpon>
|
<DependentUpon>VaiAllaRigaForm.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Properties\Resources.resx">
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
<Generator>ResXFileCodeGenerator</Generator>
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,4 @@
|
||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]
|
Binary file not shown.
|
@ -1 +1 @@
|
||||||
d638d27bd995b5c7438f24c07719243a6e21f0bf
|
c66af5722762eae07206fd460f79a3fd7b9e6c63
|
||||||
|
|
|
@ -28,3 +28,13 @@ D:\Lavoro\WinForms\MyNotepad\MyNotepad\obj\Debug\MyNotepad.csproj.GenerateResour
|
||||||
D:\Lavoro\WinForms\MyNotepad\MyNotepad\obj\Debug\MyNotepad.csproj.CoreCompileInputs.cache
|
D:\Lavoro\WinForms\MyNotepad\MyNotepad\obj\Debug\MyNotepad.csproj.CoreCompileInputs.cache
|
||||||
D:\Lavoro\WinForms\MyNotepad\MyNotepad\obj\Debug\MyNotepad.exe
|
D:\Lavoro\WinForms\MyNotepad\MyNotepad\obj\Debug\MyNotepad.exe
|
||||||
D:\Lavoro\WinForms\MyNotepad\MyNotepad\obj\Debug\MyNotepad.pdb
|
D:\Lavoro\WinForms\MyNotepad\MyNotepad\obj\Debug\MyNotepad.pdb
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\bin\Debug\MyNotepad.exe
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\bin\Debug\MyNotepad.pdb
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.csproj.AssemblyReference.cache
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.myBloccoNote.resources
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.Vai_alla_riga.resources
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.Properties.Resources.resources
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.csproj.GenerateResource.cache
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.csproj.CoreCompileInputs.cache
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.exe
|
||||||
|
D:\Lavoro\WinForms\Nuova cartella\idk\MyNotepad\obj\Debug\MyNotepad.pdb
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue