diff --git a/BallanceTasEditor/BallanceTasEditor/App.xaml b/BallanceTasEditor/BallanceTasEditor/App.xaml
index 2d2de7c..9ebaeb1 100644
--- a/BallanceTasEditor/BallanceTasEditor/App.xaml
+++ b/BallanceTasEditor/BallanceTasEditor/App.xaml
@@ -9,6 +9,7 @@
+
diff --git a/BallanceTasEditor/BallanceTasEditor/Frontend/Views/NewFileDialog.xaml b/BallanceTasEditor/BallanceTasEditor/Frontend/Views/NewFileDialog.xaml
index 10c7802..dd97003 100644
--- a/BallanceTasEditor/BallanceTasEditor/Frontend/Views/NewFileDialog.xaml
+++ b/BallanceTasEditor/BallanceTasEditor/Frontend/Views/NewFileDialog.xaml
@@ -61,10 +61,10 @@
-
-
+
+
diff --git a/BallanceTasEditor/BallanceTasEditor/Frontend/Widgets/IconButton.cs b/BallanceTasEditor/BallanceTasEditor/Frontend/Widgets/IconButton.cs
new file mode 100644
index 0000000..fc5aa2e
--- /dev/null
+++ b/BallanceTasEditor/BallanceTasEditor/Frontend/Widgets/IconButton.cs
@@ -0,0 +1,41 @@
+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.Navigation;
+using System.Windows.Shapes;
+
+namespace BallanceTasEditor.Frontend.Widgets {
+ public class IconButton : Button {
+ static IconButton() {
+ DefaultStyleKeyProperty.OverrideMetadata(typeof(IconButton), new FrameworkPropertyMetadata(typeof(IconButton)));
+ }
+
+ public string ButtonText {
+ get { return (string)GetValue(ButtonTextProperty); }
+ set { SetValue(ButtonTextProperty, value); }
+ }
+
+ // Using a DependencyProperty as the backing store for ButtonText. This enables animation, styling, binding, etc...
+ public static readonly DependencyProperty ButtonTextProperty =
+ DependencyProperty.Register("ButtonText", typeof(string), typeof(IconButton));
+
+ public ImageSource ButtonIcon {
+ get { return (ImageSource)GetValue(ButtonIconProperty); }
+ set { SetValue(ButtonIconProperty, value); }
+ }
+
+ // Using a DependencyProperty as the backing store for ButtonIcon. This enables animation, styling, binding, etc...
+ public static readonly DependencyProperty ButtonIconProperty =
+ DependencyProperty.Register("ButtonIcon", typeof(ImageSource), typeof(IconButton));
+
+ }
+}
diff --git a/BallanceTasEditor/BallanceTasEditor/Frontend/Widgets/IconButton.xaml b/BallanceTasEditor/BallanceTasEditor/Frontend/Widgets/IconButton.xaml
new file mode 100644
index 0000000..83b87f4
--- /dev/null
+++ b/BallanceTasEditor/BallanceTasEditor/Frontend/Widgets/IconButton.xaml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file