diff options
| author | Michael <[email protected]> | 2017-05-30 16:34:31 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-30 16:34:31 -0400 |
| commit | 0451b5d15703987b6be1160917ea31d36f6ee125 (patch) | |
| tree | c4ed2026acaff647cca8aa1f81beae4ddaff0ad0 /ShiftOS.WinForms/Applications/Shiftnet.cs | |
| parent | 0ca2fffe7a214fb5cc4c6482ca6fb8d1e4d2c4ea (diff) | |
| download | shiftos_thereturn-0451b5d15703987b6be1160917ea31d36f6ee125.tar.gz shiftos_thereturn-0451b5d15703987b6be1160917ea31d36f6ee125.tar.bz2 shiftos_thereturn-0451b5d15703987b6be1160917ea31d36f6ee125.zip | |
Slight Shiftnet mods, new default skin.
Diffstat (limited to 'ShiftOS.WinForms/Applications/Shiftnet.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/Shiftnet.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/Shiftnet.cs b/ShiftOS.WinForms/Applications/Shiftnet.cs index 7f5d3c1..22b53a0 100644 --- a/ShiftOS.WinForms/Applications/Shiftnet.cs +++ b/ShiftOS.WinForms/Applications/Shiftnet.cs @@ -80,6 +80,7 @@ namespace ShiftOS.WinForms.Applications txturl.Location = new Point(btnforward.Left + btnforward.Width + 2, 2); txturl.Width = flcontrols.Width - btnback.Width - 2 - btnforward.Width - 2 - (btngo.Width*2) - 2; btngo.Location = new Point(flcontrols.Width - btngo.Width - 2, 2); + flcontrols.BackColor = SkinEngine.LoadedSkin.TitleBackgroundColor; } public bool OnUnload() @@ -147,6 +148,7 @@ namespace ShiftOS.WinForms.Applications public void NavigateToUrl(string url) { + txturl.Text = url; foreach(var exe in Directory.GetFiles(Environment.CurrentDirectory)) { @@ -188,6 +190,7 @@ namespace ShiftOS.WinForms.Applications obj.OnUpgrade(); obj.OnSkinLoad(); obj.Setup(); + AppearanceManager.SetWindowTitle(this, attribute.Name + " - Shiftnet"); return; } } |
