-
Notifications
You must be signed in to change notification settings - Fork 64
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
Showing
10 changed files
with
427 additions
and
17 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
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
59 changes: 59 additions & 0 deletions
59
FFXIV_TexTools/Views/ModPack/Wizard/ManipulationEditors/AtchManipulationEditor.xaml
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,59 @@ | ||
<UserControl x:Class="FFXIV_TexTools.Views.Wizard.ManipulationEditors.AtchManipulationEditor" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:FFXIV_TexTools.Views.Wizard.ManipulationEditors" | ||
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" | ||
mc:Ignorable="d" | ||
d:DesignHeight="450" d:DesignWidth="800"> | ||
<Grid> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="40"/> | ||
<RowDefinition Height="40"/> | ||
<RowDefinition Height="40"/> | ||
<RowDefinition Height="40"/> | ||
<RowDefinition Height="40"/> | ||
</Grid.RowDefinitions> | ||
<Grid.ColumnDefinitions> | ||
<ColumnDefinition Width="100"/> | ||
<ColumnDefinition Width="100"/> | ||
<ColumnDefinition Width="100"/> | ||
<ColumnDefinition Width="100"/> | ||
<ColumnDefinition Width="100"/> | ||
<ColumnDefinition Width="100"/> | ||
</Grid.ColumnDefinitions> | ||
|
||
<Label Content="Race:" Grid.Row="0" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
<Label Content="Gender:" Grid.Row="0" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
<Label Content="Type:" Grid.Row="1" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
<Label Content="Index:" Grid.Row="1" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
<Label Content="Bone Name:" Grid.Row="2" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
<Label Content="Scale:" Grid.Row="2" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
<Label Content="Offset:" Grid.Row="3" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
<Label Content="Rotation:" Grid.Row="4" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center"></Label> | ||
|
||
<ComboBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" ItemsSource="{Binding Path=Races}" DisplayMemberPath="Key" SelectedValuePath="Value" SelectedValue="{Binding Path=Race}" VerticalAlignment="Center"/> | ||
<ComboBox Grid.Row="0" Grid.Column="4" Grid.ColumnSpan="2" ItemsSource="{Binding Path=Genders}" DisplayMemberPath="Key" SelectedValuePath="Value" SelectedValue="{Binding Path=Gender}" VerticalAlignment="Center"/> | ||
<ComboBox Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" ItemsSource="{Binding Path=Types}" DisplayMemberPath="Key" SelectedValuePath="Value" SelectedValue="{Binding Path=Type}" VerticalAlignment="Center" IsEditable="True"/> | ||
<TextBox Grid.Row="1" Grid.Column="4" Text="{Binding Path=Index}" HorizontalAlignment="Left" VerticalAlignment="Center" Width="50"/> | ||
<TextBox Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding Path=Bone}" VerticalAlignment="Center"/> | ||
<TextBox Grid.Row="2" Grid.Column="4" Text="{Binding Path=Scale}" VerticalAlignment="Center"/> | ||
<WrapPanel Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="5" VerticalAlignment="Center"> | ||
<Label VerticalAlignment="Center">X</Label> | ||
<TextBox Text="{Binding Path=OffsetX}" Width="100"/> | ||
<Label VerticalAlignment="Center" Margin="8,0,0,0">Y</Label> | ||
<TextBox Text="{Binding Path=OffsetY}" Width="100"/> | ||
<Label VerticalAlignment="Center" Margin="8,0,0,0">Z</Label> | ||
<TextBox Text="{Binding Path=OffsetZ}" Width="100"/> | ||
</WrapPanel> | ||
<WrapPanel Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="5" VerticalAlignment="Center"> | ||
<Label VerticalAlignment="Center">X</Label> | ||
<TextBox Text="{Binding Path=RotationX}" Width="100"/> | ||
<Label VerticalAlignment="Center" Margin="8,0,0,0">Y</Label> | ||
<TextBox Text="{Binding Path=RotationY}" Width="100"/> | ||
<Label VerticalAlignment="Center" Margin="8,0,0,0">Z</Label> | ||
<TextBox Text="{Binding Path=RotationZ}" Width="100"/> | ||
</WrapPanel> | ||
</Grid> | ||
</UserControl> |
Oops, something went wrong.