mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
UI - Added WIP notices
This commit is contained in:
parent
002901be7e
commit
cd109d61a2
@ -4,6 +4,7 @@
|
|||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:local="clr-namespace:Artemis.UI.Screens.Module.ProfileEditor.DisplayConditions"
|
xmlns:local="clr-namespace:Artemis.UI.Screens.Module.ProfileEditor.DisplayConditions"
|
||||||
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
d:DesignHeight="450" d:DesignWidth="800">
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
<Grid>
|
<Grid>
|
||||||
@ -12,6 +13,17 @@
|
|||||||
Display conditions
|
Display conditions
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
<Separator Style="{StaticResource MaterialDesignDarkSeparator}" Margin="8 0" />
|
<Separator Style="{StaticResource MaterialDesignDarkSeparator}" Margin="8 0" />
|
||||||
|
|
||||||
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Margin="16">
|
||||||
|
<materialDesign:PackIcon Kind="CodeNotEqual" Width="80" Height="80" HorizontalAlignment="Center" />
|
||||||
|
<TextBlock Style="{StaticResource MaterialDesignBody1TextBlock}" TextWrapping="Wrap" HorizontalAlignment="Center" Margin="0 15">
|
||||||
|
Conditions are not yet implemented
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock Style="{StaticResource MaterialDesignCaptionTextBlock}" TextWrapping="Wrap" HorizontalAlignment="Center">
|
||||||
|
Conditions will allow you to easily configure when a layer should be shown.<LineBreak/><LineBreak/>
|
||||||
|
You'll also use this to set up how a layer reacts to its conditions being matched, like play the timeline once or keep repeating the timeline until the conditions are no longer matched.
|
||||||
|
</TextBlock>
|
||||||
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Grid>
|
</Grid>
|
||||||
</UserControl>
|
</UserControl>
|
||||||
@ -46,7 +46,8 @@
|
|||||||
Width="80"
|
Width="80"
|
||||||
Height="20"
|
Height="20"
|
||||||
ToolTip="Change the property's data binding"
|
ToolTip="Change the property's data binding"
|
||||||
VerticalAlignment="Center">
|
VerticalAlignment="Center"
|
||||||
|
IsEnabled="False">
|
||||||
<TextBlock FontSize="10">DATA BINDING</TextBlock>
|
<TextBlock FontSize="10">DATA BINDING</TextBlock>
|
||||||
</Button>
|
</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|||||||
@ -4,9 +4,18 @@
|
|||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:local="clr-namespace:Artemis.UI.Screens.News"
|
xmlns:local="clr-namespace:Artemis.UI.Screens.News"
|
||||||
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
d:DesignHeight="450" d:DesignWidth="800">
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
<Grid>
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Margin="16">
|
||||||
<TextBlock>Today's news: There is no news (yet)!</TextBlock>
|
<materialDesign:PackIcon Kind="CodeNotEqual" Width="250" Height="250" HorizontalAlignment="Center" />
|
||||||
</Grid>
|
<TextBlock Style="{StaticResource MaterialDesignHeadline4TextBlock}" TextWrapping="Wrap" HorizontalAlignment="Center" Margin="0 25">
|
||||||
|
News is not yet implemented
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock Style="{StaticResource MaterialDesignBody1TextBlock}" TextWrapping="Wrap" HorizontalAlignment="Center" Margin="0 25">
|
||||||
|
The news page will keep you up-to-date with the latest developments in the Artemis community. <LineBreak />
|
||||||
|
You'll find the latest patch notes here and see featured workshop contributions.<LineBreak /><LineBreak />
|
||||||
|
|
||||||
|
</TextBlock>
|
||||||
|
</StackPanel>
|
||||||
</UserControl>
|
</UserControl>
|
||||||
@ -3,27 +3,24 @@
|
|||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:local="clr-namespace:Artemis.UI.Screens.Workshop"
|
|
||||||
xmlns:s="https://github.com/canton7/Stylet"
|
|
||||||
xmlns:controls="clr-namespace:Artemis.UI.Shared;assembly=Artemis.UI.Shared"
|
|
||||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
d:DesignHeight="450" d:DesignWidth="800">
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Margin="16">
|
||||||
<StackPanel>
|
<materialDesign:PackIcon Kind="Crane" Width="250" Height="250" HorizontalAlignment="Center" />
|
||||||
<Rectangle Width="100" Height="100" HorizontalAlignment="Left">
|
<TextBlock Style="{StaticResource MaterialDesignHeadline4TextBlock}" TextWrapping="Wrap" HorizontalAlignment="Center" Margin="0 25">
|
||||||
<Rectangle.Fill>
|
Workshop is not yet implemented
|
||||||
<SolidColorBrush Color="{Binding TestColor}" />
|
</TextBlock>
|
||||||
</Rectangle.Fill>
|
<TextBlock Style="{StaticResource MaterialDesignBody1TextBlock}" TextWrapping="Wrap" HorizontalAlignment="Center" Margin="0 25">
|
||||||
</Rectangle>
|
The workshop is one of the long-term goals of Artemis 2. It will be a hub where you can share your <LineBreak />
|
||||||
<TextBlock Text="{Binding TestColor}" />
|
creations with others and easily look for awesome new profiles and plugins.<LineBreak /><LineBreak />
|
||||||
<Button Command="{s:Action UpdateValues}" Style="{StaticResource MaterialDesignRaisedButton}"
|
These are some of the planned features that will be part of the workshop in the future:<LineBreak /><LineBreak />
|
||||||
HorizontalAlignment="Left" Margin="0 10">
|
- Profiles<LineBreak />
|
||||||
Update values
|
- Custom brushes <LineBreak />
|
||||||
</Button>
|
- Support for extra devices<LineBreak />
|
||||||
<CheckBox IsChecked="{Binding TestPopupOpen}">Test</CheckBox>
|
- Support for extra games and other modules <LineBreak />
|
||||||
<controls:ColorPicker Color="{Binding TestColor, Mode=TwoWay}" PopupOpen="{Binding TestPopupOpen}" materialDesign:HintAssist.Hint="Custom hint" />
|
- All of the features mentioned above will be able to receive upvotes/downvotes and comments <LineBreak />
|
||||||
|
- A web-based interface for the workshop so you can browse/manage uploads outside Artemis as well <LineBreak />
|
||||||
|
</TextBlock>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
|
|
||||||
</UserControl>
|
</UserControl>
|
||||||
Loading…
x
Reference in New Issue
Block a user