Skip to content

Instantly share code, notes, and snippets.

View ayoublind's full-sized avatar
👃
Lost my mind in the process

EL HASSANI Ayoub ayoublind

👃
Lost my mind in the process
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ayoublind on github.
  • I am elhassani (https://keybase.io/elhassani) on keybase.
  • I have a public key ASB76edulwH_MemdipaxiIS0AUbS3S63D_lJ3VQs08ETEwo

To claim this, I am signing this object:

@ayoublind
ayoublind / Editeur.java
Created January 19, 2016 18:36
Java --- Mini Editeur De Text
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.GraphicsConfiguration;
import java.awt.GridLayout;
import java.awt.HeadlessException;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
@ayoublind
ayoublind / AppController.java
Created January 18, 2016 19:00
JavaFx comment liée deux Fenetre entre eux --Tp2 --- code from vedio
package Tp2;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.MenuBar;
import javafx.stage.Stage;
public class AppController {
@FXML
@ayoublind
ayoublind / MainApp.java
Created January 18, 2016 18:18
JavaFx and The Classe Controller (Arabe) code from the vedio.
import java.io.IOException;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;
public class MainApp extends Application {