diff --git a/Icarus/FilledSolidParamPanel/FilledSolidParamPanelV.xaml b/Icarus/FilledSolidParamPanel/FilledSolidParamPanelV.xaml index 7e7b77d..24f4bd9 100644 --- a/Icarus/FilledSolidParamPanel/FilledSolidParamPanelV.xaml +++ b/Icarus/FilledSolidParamPanel/FilledSolidParamPanelV.xaml @@ -90,12 +90,19 @@ - + diff --git a/Icarus/Icarus.vbproj b/Icarus/Icarus.vbproj index 99db10e..d4363c2 100644 --- a/Icarus/Icarus.vbproj +++ b/Icarus/Icarus.vbproj @@ -208,6 +208,9 @@ MaterialDbV.xaml + + ColumnHeader.xaml + UpdateMachineV.xaml @@ -429,6 +432,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + MSBuild:Compile Designer @@ -813,6 +820,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + IF "$(PlatformName)"=="x86" IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Icarus\IcarusR32.exe diff --git a/Icarus/ManagePartPanel/ManagePartPanelV.xaml b/Icarus/ManagePartPanel/ManagePartPanelV.xaml index da7baf4..fb93b42 100644 --- a/Icarus/ManagePartPanel/ManagePartPanelV.xaml +++ b/Icarus/ManagePartPanel/ManagePartPanelV.xaml @@ -145,13 +145,20 @@ Rows="1" IsEnabled="{Binding IsEnabled}" Margin="0,2.5,0,0"> - + diff --git a/Icarus/ReferencePanel/ReferencePanelV.xaml b/Icarus/ReferencePanel/ReferencePanelV.xaml index c863ae2..65838e8 100644 --- a/Icarus/ReferencePanel/ReferencePanelV.xaml +++ b/Icarus/ReferencePanel/ReferencePanelV.xaml @@ -1,6 +1,7 @@  + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:PrintApp="clr-namespace:Icarus"> @@ -33,12 +34,33 @@ - + + + diff --git a/Icarus/ReferencePanel/ReferencePanelVM.vb b/Icarus/ReferencePanel/ReferencePanelVM.vb index e095825..0cce7dd 100644 --- a/Icarus/ReferencePanel/ReferencePanelVM.vb +++ b/Icarus/ReferencePanel/ReferencePanelVM.vb @@ -190,25 +190,52 @@ Public Class ReferenceBtn Get Select Case Type Case References.TL - Return "┌" + Return "/Resources/ReferencePanel/TL.png" '"┌" Case References.TR - Return "┐" + Return "/Resources/ReferencePanel/TR.png" '"┐" Case References.BL - Return "└" + Return "/Resources/ReferencePanel/BL.png" '"└" Case References.BR - Return "┘" + Return "/Resources/ReferencePanel/BR.png" '"┘" Case References.TC - Return "┬" + Return "/Resources/ReferencePanel/TC.png" '"┬" Case References.ML - Return "├" + Return "/Resources/ReferencePanel/ML.png" '"├" Case References.MR - Return "┤" + Return "/Resources/ReferencePanel/MR.png" '"┤" Case References.BC - Return "┴" + Return "/Resources/ReferencePanel/BC.png" '"┴" Case References.MC - Return "┼" + Return "/Resources/ReferencePanel/MC.png" '"┼" Case Else - Return "X" + Return "" '"X" + End Select + End Get + End Property + + Public ReadOnly Property sSelText As String + Get + Select Case Type + Case References.TL + Return "/Resources/ReferencePanel/White_TL.png" '"┌" + Case References.TR + Return "/Resources/ReferencePanel/White_TR.png" '"┐" + Case References.BL + Return "/Resources/ReferencePanel/White_BL.png" '"└" + Case References.BR + Return "/Resources/ReferencePanel/White_BR.png" '"┘" + Case References.TC + Return "/Resources/ReferencePanel/White_TC.png" '"┬" + Case References.ML + Return "/Resources/ReferencePanel/White_ML.png" '"├" + Case References.MR + Return "/Resources/ReferencePanel/White_MR.png" '"┤" + Case References.BC + Return "/Resources/ReferencePanel/White_BC.png" '"┴" + Case References.MC + Return "/Resources/ReferencePanel/White_MC.png" '"┼" + Case Else + Return "" '"X" End Select End Get End Property diff --git a/Icarus/Resources/ReferencePanel/BC.png b/Icarus/Resources/ReferencePanel/BC.png new file mode 100644 index 0000000..5d4f524 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/BC.png differ diff --git a/Icarus/Resources/ReferencePanel/BL.png b/Icarus/Resources/ReferencePanel/BL.png new file mode 100644 index 0000000..85d759a Binary files /dev/null and b/Icarus/Resources/ReferencePanel/BL.png differ diff --git a/Icarus/Resources/ReferencePanel/BR.old.png b/Icarus/Resources/ReferencePanel/BR.old.png new file mode 100644 index 0000000..7d3bd51 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/BR.old.png differ diff --git a/Icarus/Resources/ReferencePanel/BR.png b/Icarus/Resources/ReferencePanel/BR.png new file mode 100644 index 0000000..4744d6b Binary files /dev/null and b/Icarus/Resources/ReferencePanel/BR.png differ diff --git a/Icarus/Resources/ReferencePanel/MC.png b/Icarus/Resources/ReferencePanel/MC.png new file mode 100644 index 0000000..9f7b529 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/MC.png differ diff --git a/Icarus/Resources/ReferencePanel/ML.png b/Icarus/Resources/ReferencePanel/ML.png new file mode 100644 index 0000000..c0f058f Binary files /dev/null and b/Icarus/Resources/ReferencePanel/ML.png differ diff --git a/Icarus/Resources/ReferencePanel/MR.png b/Icarus/Resources/ReferencePanel/MR.png new file mode 100644 index 0000000..5e8e292 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/MR.png differ diff --git a/Icarus/Resources/ReferencePanel/TC.png b/Icarus/Resources/ReferencePanel/TC.png new file mode 100644 index 0000000..c718743 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/TC.png differ diff --git a/Icarus/Resources/ReferencePanel/TL.png b/Icarus/Resources/ReferencePanel/TL.png new file mode 100644 index 0000000..208f780 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/TL.png differ diff --git a/Icarus/Resources/ReferencePanel/TR.png b/Icarus/Resources/ReferencePanel/TR.png new file mode 100644 index 0000000..2b0bde7 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/TR.png differ diff --git a/Icarus/Resources/ReferencePanel/White_BC.png b/Icarus/Resources/ReferencePanel/White_BC.png new file mode 100644 index 0000000..31bab45 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_BC.png differ diff --git a/Icarus/Resources/ReferencePanel/White_BL.png b/Icarus/Resources/ReferencePanel/White_BL.png new file mode 100644 index 0000000..d142db7 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_BL.png differ diff --git a/Icarus/Resources/ReferencePanel/White_BR.png b/Icarus/Resources/ReferencePanel/White_BR.png new file mode 100644 index 0000000..38b0aac Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_BR.png differ diff --git a/Icarus/Resources/ReferencePanel/White_MC.png b/Icarus/Resources/ReferencePanel/White_MC.png new file mode 100644 index 0000000..f585407 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_MC.png differ diff --git a/Icarus/Resources/ReferencePanel/White_ML.png b/Icarus/Resources/ReferencePanel/White_ML.png new file mode 100644 index 0000000..243ef3b Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_ML.png differ diff --git a/Icarus/Resources/ReferencePanel/White_MR.png b/Icarus/Resources/ReferencePanel/White_MR.png new file mode 100644 index 0000000..f8adf7b Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_MR.png differ diff --git a/Icarus/Resources/ReferencePanel/White_TC.png b/Icarus/Resources/ReferencePanel/White_TC.png new file mode 100644 index 0000000..aa9e285 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_TC.png differ diff --git a/Icarus/Resources/ReferencePanel/White_TL.png b/Icarus/Resources/ReferencePanel/White_TL.png new file mode 100644 index 0000000..79ba2f0 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_TL.png differ diff --git a/Icarus/Resources/ReferencePanel/White_TR.png b/Icarus/Resources/ReferencePanel/White_TR.png new file mode 100644 index 0000000..4907537 Binary files /dev/null and b/Icarus/Resources/ReferencePanel/White_TR.png differ diff --git a/Icarus/Resources/RibParamPanel/CopyFrom.png b/Icarus/Resources/RibParamPanel/CopyFrom.png new file mode 100644 index 0000000..17b01a0 Binary files /dev/null and b/Icarus/Resources/RibParamPanel/CopyFrom.png differ diff --git a/Icarus/Resources/SliceManager/Dimensions.png b/Icarus/Resources/SliceManager/Dimensions.png new file mode 100644 index 0000000..7ea5eef Binary files /dev/null and b/Icarus/Resources/SliceManager/Dimensions.png differ diff --git a/Icarus/Resources/SliceManager/Mass.png b/Icarus/Resources/SliceManager/Mass.png new file mode 100644 index 0000000..26cb015 Binary files /dev/null and b/Icarus/Resources/SliceManager/Mass.png differ diff --git a/Icarus/Resources/SliceManager/StopCalculation.png b/Icarus/Resources/SliceManager/StopCalculation.png index 5818a89..83707fb 100644 Binary files a/Icarus/Resources/SliceManager/StopCalculation.png and b/Icarus/Resources/SliceManager/StopCalculation.png differ diff --git a/Icarus/Resources/SliceManager/Time.png b/Icarus/Resources/SliceManager/Time.png new file mode 100644 index 0000000..0d4d317 Binary files /dev/null and b/Icarus/Resources/SliceManager/Time.png differ diff --git a/Icarus/Resources/SplashScreen/BlueSplashscreen.old.png b/Icarus/Resources/SplashScreen/BlueSplashscreen.old.png new file mode 100644 index 0000000..8165f4a Binary files /dev/null and b/Icarus/Resources/SplashScreen/BlueSplashscreen.old.png differ diff --git a/Icarus/Resources/SplashScreen/BlueSplashscreen.png b/Icarus/Resources/SplashScreen/BlueSplashscreen.png index 8165f4a..49faddd 100644 Binary files a/Icarus/Resources/SplashScreen/BlueSplashscreen.png and b/Icarus/Resources/SplashScreen/BlueSplashscreen.png differ diff --git a/Icarus/Resources/TFSEditor/Reduce.orig.png b/Icarus/Resources/TFSEditor/Reduce.orig.png new file mode 100644 index 0000000..d23c313 Binary files /dev/null and b/Icarus/Resources/TFSEditor/Reduce.orig.png differ diff --git a/Icarus/Resources/TFSEditor/Reduce.png b/Icarus/Resources/TFSEditor/Reduce.png new file mode 100644 index 0000000..8ab1903 Binary files /dev/null and b/Icarus/Resources/TFSEditor/Reduce.png differ diff --git a/Icarus/RibParamPanel/RibParamPanelV.xaml b/Icarus/RibParamPanel/RibParamPanelV.xaml index a843ad9..59c5495 100644 --- a/Icarus/RibParamPanel/RibParamPanelV.xaml +++ b/Icarus/RibParamPanel/RibParamPanelV.xaml @@ -114,15 +114,25 @@ - + + diff --git a/Icarus/SliceManager/SliceManagerV.xaml b/Icarus/SliceManager/SliceManagerV.xaml index 03e2bc0..b6e09ed 100644 --- a/Icarus/SliceManager/SliceManagerV.xaml +++ b/Icarus/SliceManager/SliceManagerV.xaml @@ -15,21 +15,63 @@ - - - + + + + + + + + + + + + + + + + + + + + + + + + -