-
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.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
51 changed files
with
17,573 additions
and
80 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<Window x:Class="barroc.factureninzien" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:local="clr-namespace:barroc" | ||
mc:Ignorable="d" | ||
Title="factureninzien" Height="450" Width="800"> | ||
<StackPanel> | ||
<StackPanel> | ||
<Button x:Name="facturenInzienButton" Click="facturenInzienButton_Click">Inzien</Button> | ||
<DataGrid x:Name="dataGrid" Height="400"/> | ||
</StackPanel> | ||
</StackPanel> | ||
</Window> |
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,40 @@ | ||
using MySql.Data.MySqlClient; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Shapes; | ||
|
||
namespace barroc | ||
{ | ||
/// <summary> | ||
/// Interaction logic for factureninzien.xaml | ||
/// </summary> | ||
public partial class factureninzien : Window | ||
{ | ||
public factureninzien() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void facturenInzienButton_Click(object sender, RoutedEventArgs e) | ||
{ | ||
string connStr = "server=localhost;user=root;database=barroc_intense;port=3306;password="; | ||
MySqlConnection conn = new MySqlConnection(connStr); | ||
conn.Open(); | ||
|
||
MySqlCommand cmd = new MySqlCommand("select * from invoices", conn); | ||
MySqlDataReader dr = cmd.ExecuteReader(); | ||
|
||
dataGrid.ItemsSource = dr; | ||
} | ||
} | ||
} |
Binary file not shown.
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
Empty file.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
| ||
|
||
<<<<<<< HEAD | ||
FC:\xampp\htdocs\Barroc_Intenss\C#\barroc\barroc\facturenAanmaken.xaml;; | ||
FC:\xampp\htdocs\Barroc_Intenss\C#\barroc\barroc\MainWindow.xaml;; | ||
======= | ||
FC:\xampp\htdocs\barroc\Barroc_Intenss\C#\barroc\barroc\facturenAanmaken.xaml;; | ||
FC:\xampp\htdocs\barroc\Barroc_Intenss\C#\barroc\barroc\factureninzien.xaml;; | ||
FC:\xampp\htdocs\barroc\Barroc_Intenss\C#\barroc\barroc\MainWindow.xaml;; | ||
>>>>>>> master | ||
|
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,5 +1,11 @@ | ||
| ||
|
||
<<<<<<< HEAD | ||
FC:\xampp\htdocs\Barroc_Intenss\C#\barroc\barroc\facturenAanmaken.xaml;; | ||
FC:\xampp\htdocs\Barroc_Intenss\C#\barroc\barroc\MainWindow.xaml;; | ||
======= | ||
FC:\xampp\htdocs\barroc\Barroc_Intenss\C#\barroc\barroc\facturenAanmaken.xaml;; | ||
FC:\xampp\htdocs\barroc\Barroc_Intenss\C#\barroc\barroc\MainWindow.xaml;; | ||
FC:\xampp\htdocs\barroc\Barroc_Intenss\C#\barroc\barroc\factureninzien.xaml;; | ||
>>>>>>> master | ||
|
Binary file not shown.
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
Binary file not shown.
Oops, something went wrong.