Skip to content
Snippets Groups Projects
Commit 53451103 authored by Antoine Félix's avatar Antoine Félix
Browse files

Ajout de l'accès à la liste des élèves.

parent 1edb22db
No related merge requests found
......@@ -39,7 +39,7 @@
//
// pb_action_suivante
//
this.pb_action_suivante.BackColor = System.Drawing.SystemColors.Control;
this.pb_action_suivante.BackColor = System.Drawing.Color.Transparent;
this.pb_action_suivante.BackgroundImage = global::psychorientation.Properties.Resources.passer;
this.pb_action_suivante.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.pb_action_suivante.InitialImage = null;
......@@ -52,6 +52,7 @@
//
// pb_liste_eleves
//
this.pb_liste_eleves.BackColor = System.Drawing.Color.Transparent;
this.pb_liste_eleves.BackgroundImage = global::psychorientation.Properties.Resources.grp;
this.pb_liste_eleves.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pb_liste_eleves.Location = new System.Drawing.Point(12, 12);
......@@ -74,6 +75,7 @@
//
// pb_sortir
//
this.pb_sortir.BackColor = System.Drawing.Color.Transparent;
this.pb_sortir.BackgroundImage = global::psychorientation.Properties.Resources.sortir;
this.pb_sortir.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pb_sortir.Location = new System.Drawing.Point(1283, -1);
......@@ -88,7 +90,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.BackgroundImage = global::psychorientation.Properties.Resources.salleV1;
this.BackgroundImage = global::psychorientation.Properties.Resources.salleV11;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(1357, 783);
this.Controls.Add(this.pb_sortir);
......
......@@ -65,12 +65,17 @@ namespace psychorientation
break;
}
// Cours.
// Notation.
// Cours particuliers.
lbl_date.Text = libelle.Mois(moisActuel % 12) + " " + libelle.Niveau(anneeActuelle);
}
private void Pb_liste_eleves_Click(object sender, EventArgs e)
{
ListeEleve le = new ListeEleve();
le.Show();
}
private void InterfaceClasse_SizeChanged(object sender, EventArgs e)
......
......@@ -90,6 +90,16 @@ namespace psychorientation.Properties {
}
}
/// <summary>
/// Recherche une ressource localisée de type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap salleV11 {
get {
object obj = ResourceManager.GetObject("salleV11", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Recherche une ressource localisée de type System.Drawing.Bitmap.
/// </summary>
......
......@@ -118,16 +118,19 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="passer" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\passer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="sortir" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\sortir.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="salleV1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\salleV1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="grp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\grp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="sortir" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\sortir.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="passer" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\passer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="salleV11" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\salleV11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
\ No newline at end of file
psychorientation/psychorientation/Resources/salleV11.png

370 KiB

......@@ -137,5 +137,8 @@
<ItemGroup>
<None Include="Resources\grp.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\salleV11.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment