Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
VIZ.Package
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘龙飞
VIZ.Package
Commits
3f2a4b6a
Commit
3f2a4b6a
authored
Feb 02, 2023
by
liulongfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
c91ddc15
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
15 deletions
+23
-15
VIZ.Package.Module/Page/Group/View/PageGroupView.xaml
+3
-3
VIZ.Package.Module/Page/Templage/View/PageTemplateView.xaml
+2
-2
VIZ.Package.Module/Setting/PluginMapping/View/PluginMappingSettingView.xaml
+3
-3
VIZ.Package.Module/Task/PackageTask/View/PackageTaskView.xaml
+15
-7
No files found.
VIZ.Package.Module/Page/Group/View/PageGroupView.xaml
View file @
3f2a4b6a
...
...
@@ -106,8 +106,8 @@
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
<dxg:GridColumn Header="引擎类型" FieldName="EngineType" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"></dxg:GridColumn>
<dxg:GridColumn Header="模板类型" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"
Binding="{Binding Path=
Templat
eType,Converter={StaticResource Enum2EnumDescriptionConverter}}">
<dxg:GridColumn Header="模板类型" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"
AllowEditing="False"
Binding="{Binding Path=
Pag
eType,Converter={StaticResource Enum2EnumDescriptionConverter}}">
</dxg:GridColumn>
<dxg:GridColumn Header="插件" FieldName="PluginName" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"></dxg:GridColumn>
</dxg:GridControl.Columns>
...
...
@@ -115,7 +115,7 @@
<dxg:TableView IsColumnMenuEnabled="False"
AllowEditing="True" ShowIndicator="False"
NavigationStyle="Cell" ShowVerticalLines="False"
ShowGroupPanel="False" EditorShowMode="Mouse
Up
"
ShowGroupPanel="False" EditorShowMode="Mouse
Down
"
AllowDragDrop="True"
ShowBandsPanel="False"
ShowTotalSummary="False"
...
...
VIZ.Package.Module/Page/Templage/View/PageTemplateView.xaml
View file @
3f2a4b6a
...
...
@@ -68,7 +68,7 @@
<dxg:TableView IsColumnMenuEnabled="False"
AllowEditing="True" ShowIndicator="False"
NavigationStyle="Cell" ShowVerticalLines="False"
ShowGroupPanel="False" EditorShowMode="Mouse
Up
"
ShowGroupPanel="False" EditorShowMode="Mouse
Down
"
AllowDragDrop="True"
ShowBandsPanel="False"
ShowTotalSummary="False"
...
...
@@ -115,7 +115,7 @@
<dxg:TableView IsColumnMenuEnabled="False"
AllowEditing="True" ShowIndicator="False"
NavigationStyle="Cell" ShowVerticalLines="False"
ShowGroupPanel="False" EditorShowMode="Mouse
Up
"
ShowGroupPanel="False" EditorShowMode="Mouse
Down
"
AllowDragDrop="False"
ShowBandsPanel="False"
ShowTotalSummary="False"
...
...
VIZ.Package.Module/Setting/PluginMapping/View/PluginMappingSettingView.xaml
View file @
3f2a4b6a
...
...
@@ -68,8 +68,8 @@
</dxg:GridColumn>
<dxg:GridColumn Header="插件" FieldName="PluginID" AllowSorting="False" AllowColumnFiltering="False" Width="120" AllowResizing="False">
<dxg:GridColumn.EditSettings>
<dxe:ComboBoxEditSettings ItemsSource="{Binding Path=PluginInfos}"
DisplayMember="Name" ValueMember="ID"></dxe:ComboBoxEditSettings>
<dxe:ComboBoxEditSettings ItemsSource="{Binding Path=PluginInfos}"
IsTextEditable="False"
DisplayMember="Name" ValueMember="ID"></dxe:ComboBoxEditSettings>
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
</dxg:GridControl.Columns>
...
...
@@ -77,7 +77,7 @@
<dxg:TableView IsColumnMenuEnabled="False"
AllowEditing="True" ShowIndicator="False"
NavigationStyle="Cell" ShowVerticalLines="False"
ShowGroupPanel="False" EditorShowMode="Mouse
Up
"
ShowGroupPanel="False" EditorShowMode="Mouse
Down
"
AllowDragDrop="False"
ShowBandsPanel="False"
ShowTotalSummary="False"
...
...
VIZ.Package.Module/Task/PackageTask/View/PackageTaskView.xaml
View file @
3f2a4b6a
...
...
@@ -35,10 +35,16 @@
<Grid>
<dxg:GridControl ItemsSource="{Binding Path=ItemsSource}" ShowBorder="False">
<dxg:GridControl.Columns>
<dxg:GridColumn Header="编号" FieldName="ID" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"
AllowResizing="False" Width="80"></dxg:GridColumn>
<dxg:GridColumn Header="编号" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"
AllowResizing="False" Width="40" AllowEditing="False">
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Row.ID}" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock>
</DataTemplate>
</dxg:GridColumn.CellTemplate>
</dxg:GridColumn>
<dxg:GridColumn Header="状态" FieldName="Status" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"
AllowResizing="False" Width="80">
AllowResizing="False" Width="80"
AllowEditing="False"
>
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<Image Width="20" Height="20" Margin="0,3,0,3" HorizontalAlignment="Center" VerticalAlignment="Center"
...
...
@@ -83,7 +89,7 @@
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
<dxg:GridColumn Header="任务信息" FieldName="Status" ReadOnly="True" AllowSorting="False" AllowColumnFiltering="False"
AllowResizing="False" Width="80">
AllowResizing="False" Width="80"
AllowEditing="False"
>
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<Image Width="20" Height="20" Margin="0,3,0,3" HorizontalAlignment="Center" VerticalAlignment="Center"
...
...
@@ -94,7 +100,7 @@
</dxg:GridColumn.CellTemplate>
</dxg:GridColumn>
<dxg:GridColumn AllowSorting="False" AllowColumnFiltering="False"
AllowResizing="False" Width="100">
AllowResizing="False" Width="100"
AllowEditing="False"
>
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
...
...
@@ -102,12 +108,14 @@
Icon="/VIZ.Package.Module.Resource;component/Icons/icon_play_32x32.png"
IsEnabled="{Binding Path=Row.IsRunning,Converter={StaticResource Bool2BoolConverter}}"
Command="{Binding ElementName=uc,Path=DataContext.StartCommand}"
CommandParameter="{Binding Row}"></fcommon:IconButton>
CommandParameter="{Binding Row}"
ToolTip="开始"></fcommon:IconButton>
<fcommon:IconButton Style="{StaticResource IconButton_Menu_Mask}" Margin="10,0,0,0"
Icon="/VIZ.Package.Module.Resource;component/Icons/icon_pause_32x32.png"
IsEnabled="{Binding Path=Row.IsRunning}"
Command="{Binding ElementName=uc,Path=DataContext.StopCommand}"
CommandParameter="{Binding Row}"></fcommon:IconButton>
CommandParameter="{Binding Row}"
ToolTip="停止"></fcommon:IconButton>
</StackPanel>
</DataTemplate>
</dxg:GridColumn.CellTemplate>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment