-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NEW] Colors for button-hovers are now saved and loaded from the data…
…base [NEW] A window to show all data to a cosplan when clicked at one [NEW] Version number will be shown in the lower right corner [NEW] Extension class for GUI-related extensions [NEW] Layout class to handle button-hovers from one place [IMPR] Changed buttons to panels to handle hover-effects by myself [IMPR] Moved Franchises4Dropdown to DbObjects as it represents data from the database
- Loading branch information
Showing
13 changed files
with
470 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ public override string ToString() | |
return this.Name; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
TODO ACP (! - TODO; ? - Testing) | ||
|
||
? erledigen | ||
! farben in einstellungen aendern | ||
! neue spalte in cosplans fuer cosplaypartner | ||
! conventions | ||
? alle cosplans anzeigen | ||
? update-funktion | ||
! in franchise dropdown jeweils anzahl anzeigen | ||
!!! Bilder | ||
? erledigen | ||
! Farben in Einstellungen aendern | ||
! neue Spalte in Cosplans fuer Cosplaypartner | ||
! Conventions | ||
? alle Cosplans anzeigen | ||
? update-funktion | ||
! in franchise dropdown jeweils anzahl anzeigen | ||
!!! Bilder | ||
! Tableheader-Buttons durch Labels mit Click-Event ersetzen, um Hover-Effekt leichter zu ändern ... Dockpanel Click-Event? | ||
! Cosplans in Liste filtern | ||
|
||
|
||
|
||
Bilder: | ||
zu welchem cosplay? | ||
anzeigebild (in cosplans) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace ACP.Datenbankversionen | ||
{ | ||
using ApS.Databases.Firebird; | ||
|
||
internal class Version_0_1_3 : UpdateDatabase | ||
{ | ||
private readonly string CosplansAddErstelltAm = ""; | ||
private readonly string CosplansAddAnzeigebild = ""; | ||
|
||
public Version_0_1_3() : base() | ||
{ | ||
base.AddStatements(this.CosplansAddErstelltAm); | ||
base.AddStatements(this.CosplansAddAnzeigebild); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.