-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
FairyZeta
committed
Jun 6, 2016
1 parent
cd1041a
commit d521c82
Showing
13 changed files
with
718 additions
and
124 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
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
302 changes: 213 additions & 89 deletions
302
FairyZeta.FF14.ACT.Timeline.Core/WPF/TemplateStyle/StandardTimelineResource.xaml
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
22 changes: 22 additions & 0 deletions
22
FairyZeta.Framework/WPF/Controls/_Polygon/ExtendPolygon.cs
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,22 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Shapes; | ||
using System.Windows.Controls; | ||
using System.Windows.Media; | ||
|
||
namespace FairyZeta.Framework.WPF.Controls | ||
{ | ||
/// <summary> FZ/機能拡張型ポリゴン | ||
/// </summary> | ||
public class ExtendPolygon : Shape | ||
{ | ||
private Geometry _DefiningGeometry; | ||
protected override Geometry DefiningGeometry | ||
{ | ||
get { return this._DefiningGeometry; } | ||
} | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
FairyZeta.Framework/WPF/Controls/_ProgressBar/ExtendProgressBar.cs
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,63 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.ObjectModel; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Media; | ||
using System.Windows.Controls; | ||
|
||
namespace FairyZeta.Framework.WPF.Controls | ||
{ | ||
/// <summary> FZ/機能拡張型プログレスバー | ||
/// </summary> | ||
public class ExtendProgressBar : GradientProgressBar | ||
{ | ||
/*--- Property/Field Definitions ------------------------------------------------------------------------------------------------------------------------------*/ | ||
|
||
public static readonly DependencyProperty BaseCornerRadiusProperty = | ||
DependencyProperty.Register("BaseCornerRadius", typeof(CornerRadius), typeof(GradientProgressBar), new FrameworkPropertyMetadata(default(CornerRadius))); | ||
public static readonly DependencyProperty InnerCornerRadiusProperty = | ||
DependencyProperty.Register("InnerCornerRadius", typeof(CornerRadius), typeof(GradientProgressBar), new FrameworkPropertyMetadata(default(CornerRadius))); | ||
|
||
|
||
public CornerRadius BaseCornerRadius | ||
{ | ||
get { return (CornerRadius)GetValue(BaseCornerRadiusProperty); } | ||
set { SetValue(BaseCornerRadiusProperty, value); } | ||
} | ||
public CornerRadius InnerCornerRadius | ||
{ | ||
get { return (CornerRadius)GetValue(InnerCornerRadiusProperty); } | ||
set { SetValue(InnerCornerRadiusProperty, value); } | ||
} | ||
|
||
public ObservableCollection<Brush> ProgressValueBrushCollection { get; private set; } | ||
|
||
/*--- Constructers --------------------------------------------------------------------------------------------------------------------------------------------*/ | ||
|
||
/// <summary> FZ/機能拡張型プログレスバー/コンストラクタ | ||
/// </summary> | ||
public ExtendProgressBar() | ||
: base() | ||
{ | ||
this.initControl(); | ||
} | ||
|
||
/*--- Method: Initialization ----------------------------------------------------------------------------------------------------------------------------------*/ | ||
|
||
/// <summary> コントロールの初期化を実行します。 | ||
/// </summary> | ||
/// <returns> 正常終了時 True </returns> | ||
private bool initControl() | ||
{ | ||
return true; | ||
} | ||
|
||
/*--- Method: public ------------------------------------------------------------------------------------------------------------------------------------------*/ | ||
|
||
/*--- Method: private -----------------------------------------------------------------------------------------------------------------------------------------*/ | ||
|
||
} | ||
} |
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