Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
VIZ.TVP.CBA
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.TVP.CBA
Commits
6fb78282
Commit
6fb78282
authored
Feb 25, 2023
by
wangonghui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
bedb9898
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
VIZ.MIGU.CBA.Module/DayMatch/DayMatchPlugin.cs
+1
-1
VIZ.MIGU.CBA.Module/DayMatch/View/DayMatchView.xaml
+2
-2
VIZ.MIGU.CBA.Module/DayMatch/ViewModel/DayMatchViewModel.cs
+5
-5
VIZ.MIGU.CBA.Module/MVPPlayer/MvpPlayerPlugin.cs
+1
-1
VIZ.MIGU.CBA.Module/SinglePlayer/SinglePlayerPlugin.cs
+1
-1
VIZ.MIGU.CBA.Module/TeamStandings/TeamStandingPlugin.cs
+1
-1
No files found.
VIZ.MIGU.CBA.Module/DayMatch/DayMatchPlugin.cs
View file @
6fb78282
...
@@ -25,7 +25,7 @@ namespace VIZ.TVP.CBA.Module.DayMatch
...
@@ -25,7 +25,7 @@ namespace VIZ.TVP.CBA.Module.DayMatch
/// <summary>
/// <summary>
/// 插件显示名称
/// 插件显示名称
/// </summary>
/// </summary>
public
const
string
PLUGIN_NAME
=
"
今日
赛程"
;
public
const
string
PLUGIN_NAME
=
"赛程"
;
public
void
Dispose
()
public
void
Dispose
()
{
{
...
...
VIZ.MIGU.CBA.Module/DayMatch/View/DayMatchView.xaml
View file @
6fb78282
...
@@ -126,8 +126,8 @@
...
@@ -126,8 +126,8 @@
Command="{Binding BtnRoundCmd}" HorizontalContentAlignment="Center"
Command="{Binding BtnRoundCmd}" HorizontalContentAlignment="Center"
Width="100" Height="30" IsEnabled="{Binding RoundBtnEnable,Mode=TwoWay}" />
Width="100" Height="30" IsEnabled="{Binding RoundBtnEnable,Mode=TwoWay}" />
<dx:SimpleButton Grid.Row="1" Grid.Column="1" Glyph='/VIZ.TVP.CBA.Module;component/Image/CBAPng/Prompt2525.png' FontSize="16"
<
!--<
dx:SimpleButton Grid.Row="1" Grid.Column="1" Glyph='/VIZ.TVP.CBA.Module;component/Image/CBAPng/Prompt2525.png' FontSize="16"
Command="{Binding PromptCommand}" HorizontalContentAlignment="Center" Width="30" Height="30" />
Command="{Binding PromptCommand}" HorizontalContentAlignment="Center" Width="30" Height="30" />
-->
</Grid>
</Grid>
</WrapPanel>
</WrapPanel>
...
...
VIZ.MIGU.CBA.Module/DayMatch/ViewModel/DayMatchViewModel.cs
View file @
6fb78282
...
@@ -37,7 +37,7 @@ namespace VIZ.TVP.CBA.Module
...
@@ -37,7 +37,7 @@ namespace VIZ.TVP.CBA.Module
roundMatchItem
=
1
;
roundMatchItem
=
1
;
chooseMatchItems
=
new
ObservableCollection
<
string
>()
{
"
赛程
"
,
"轮次"
};
chooseMatchItems
=
new
ObservableCollection
<
string
>()
{
"
日期
"
,
"轮次"
};
RoundComEnable
=
false
;
RoundComEnable
=
false
;
RoundBtnEnable
=
false
;
RoundBtnEnable
=
false
;
...
@@ -217,7 +217,7 @@ namespace VIZ.TVP.CBA.Module
...
@@ -217,7 +217,7 @@ namespace VIZ.TVP.CBA.Module
}
}
private
string
selectChooseMatchItem
=
"
赛程
"
;
private
string
selectChooseMatchItem
=
"
日期
"
;
public
string
SelectChooseMatchItem
public
string
SelectChooseMatchItem
{
{
...
@@ -227,14 +227,14 @@ namespace VIZ.TVP.CBA.Module
...
@@ -227,14 +227,14 @@ namespace VIZ.TVP.CBA.Module
selectChooseMatchItem
=
value
;
selectChooseMatchItem
=
value
;
this
.
RaisePropertyChanged
(
nameof
(
SelectChooseMatchItem
));
this
.
RaisePropertyChanged
(
nameof
(
SelectChooseMatchItem
));
if
(
selectChooseMatchItem
==
"
赛程
"
)
if
(
selectChooseMatchItem
==
"
日期
"
)
{
{
RoundBtnEnable
=
false
;
RoundBtnEnable
=
false
;
RoundComEnable
=
false
;
RoundComEnable
=
false
;
MateDateEnable
=
true
;
MateDateEnable
=
true
;
BtmEnable
=
true
;
BtmEnable
=
true
;
Title
=
"今日赛程"
;
//
Title = "今日赛程";
}
}
else
if
(
selectChooseMatchItem
==
"轮次"
)
else
if
(
selectChooseMatchItem
==
"轮次"
)
{
{
...
@@ -243,7 +243,7 @@ namespace VIZ.TVP.CBA.Module
...
@@ -243,7 +243,7 @@ namespace VIZ.TVP.CBA.Module
MateDateEnable
=
false
;
MateDateEnable
=
false
;
BtmEnable
=
false
;
BtmEnable
=
false
;
Title
=
"本轮赛程"
;
//
Title = "本轮赛程";
}
}
}
}
}
}
...
...
VIZ.MIGU.CBA.Module/MVPPlayer/MvpPlayerPlugin.cs
View file @
6fb78282
...
@@ -20,7 +20,7 @@ namespace VIZ.TVP.CBA.Module
...
@@ -20,7 +20,7 @@ namespace VIZ.TVP.CBA.Module
/// <summary>
/// <summary>
/// 插件显示名称
/// 插件显示名称
/// </summary>
/// </summary>
public
const
string
PLUGIN_NAME
=
"MVP
球员
"
;
public
const
string
PLUGIN_NAME
=
"MVP
球员数据
"
;
public
void
Dispose
()
public
void
Dispose
()
{
{
...
...
VIZ.MIGU.CBA.Module/SinglePlayer/SinglePlayerPlugin.cs
View file @
6fb78282
...
@@ -21,7 +21,7 @@ namespace VIZ.TVP.CBA.Module
...
@@ -21,7 +21,7 @@ namespace VIZ.TVP.CBA.Module
/// <summary>
/// <summary>
/// 插件显示名称
/// 插件显示名称
/// </summary>
/// </summary>
public
const
string
PLUGIN_NAME
=
"单
个球员
"
;
public
const
string
PLUGIN_NAME
=
"单
球员数据
"
;
public
void
Dispose
()
public
void
Dispose
()
{
{
...
...
VIZ.MIGU.CBA.Module/TeamStandings/TeamStandingPlugin.cs
View file @
6fb78282
...
@@ -21,7 +21,7 @@ namespace VIZ.TVP.CBA.Module
...
@@ -21,7 +21,7 @@ namespace VIZ.TVP.CBA.Module
/// <summary>
/// <summary>
/// 插件显示名称
/// 插件显示名称
/// </summary>
/// </summary>
public
const
string
PLUGIN_NAME
=
"
球队积分排名
"
;
public
const
string
PLUGIN_NAME
=
"
积分榜
"
;
public
void
Dispose
()
public
void
Dispose
()
{
{
...
...
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