Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 88b9226bcb | |||
| 9f4e025305 | |||
| ecbd6ecd66 |
@@ -120,6 +120,13 @@ Public Module ConstIni
|
|||||||
Public Const K_WALLBASEDIR As String = "BaseDir"
|
Public Const K_WALLBASEDIR As String = "BaseDir"
|
||||||
Public Const K_WALLBWEEXEC As String = "BweExec"
|
Public Const K_WALLBWEEXEC As String = "BweExec"
|
||||||
|
|
||||||
|
Public Const S_MACHINELOGFILTER As String = "MachineLogFilters"
|
||||||
|
Public Const K_PARTEVENTTYPE As String = "PartEventType"
|
||||||
|
Public Const K_ENTITYTYPE As String = "EntityType"
|
||||||
|
Public Const K_DAYTYPE As String = "DayType"
|
||||||
|
Public Const K_STARTDATE As String = "StartDate"
|
||||||
|
Public Const K_ENDDATE As String = "EndDate"
|
||||||
|
|
||||||
'Public Const S_NEST As String = "Nest"
|
'Public Const S_NEST As String = "Nest"
|
||||||
Public Const K_NESTEXEC As String = "NestExec"
|
Public Const K_NESTEXEC As String = "NestExec"
|
||||||
Public Const K_FLIPROT As String = "FlipRot"
|
Public Const K_FLIPROT As String = "FlipRot"
|
||||||
|
|||||||
@@ -561,6 +561,8 @@ Public Class LeftPanelVM
|
|||||||
If CurrentMachine.Flow = FlowTypes.ONEBYONE Then
|
If CurrentMachine.Flow = FlowTypes.ONEBYONE Then
|
||||||
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
MyMachGroupVM.UpdateProduceIsEnabledForAll()
|
||||||
End If
|
End If
|
||||||
|
' aggiorno log macchina
|
||||||
|
Map.refMachineLogPageVM.UpdateMachineLogList(False)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' DoneRawPart
|
#End Region ' DoneRawPart
|
||||||
@@ -800,6 +802,8 @@ Public Class LeftPanelVM
|
|||||||
Next
|
Next
|
||||||
SetDonePart(SelMachGroup, SelMachGroup.SelPart)
|
SetDonePart(SelMachGroup, SelMachGroup.SelPart)
|
||||||
Map.refProjectVM.SupervisorMachGroupPanelVM.SelectedMachGroup = SelMachGroup
|
Map.refProjectVM.SupervisorMachGroupPanelVM.SelectedMachGroup = SelMachGroup
|
||||||
|
' aggiorno log macchina
|
||||||
|
Map.refMachineLogPageVM.UpdateMachineLogList(False)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub SetDonePart(MachGroup As MyMachGroupVM, Part As PartVM)
|
Public Sub SetDonePart(MachGroup As MyMachGroupVM, Part As PartVM)
|
||||||
|
|||||||
@@ -569,6 +569,8 @@ Public Class MachManaging
|
|||||||
' scrivo evento inizio MachGroup su DB
|
' scrivo evento inizio MachGroup su DB
|
||||||
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachGroupStateLog(dtStart, nP_Prod, nP_Machgroup, nP_State, DbControllers.SupervisorId))
|
DbControllers.m_LogMachineController.Create(LogEvent.CreateMachGroupStateLog(dtStart, nP_Prod, nP_Machgroup, nP_State, DbControllers.SupervisorId))
|
||||||
End If
|
End If
|
||||||
|
' flag di aggiornamento log macchina
|
||||||
|
Map.refMachineLogPageVM.UpdateMachineLogList(False)
|
||||||
' attesa per essere sicuro che abbia scritto e riletto variabili
|
' attesa per essere sicuro che abbia scritto e riletto variabili
|
||||||
Threading.Thread.Sleep(300)
|
Threading.Thread.Sleep(300)
|
||||||
ElseIf nP_State = PartState.END_ Then
|
ElseIf nP_State = PartState.END_ Then
|
||||||
@@ -678,6 +680,8 @@ Public Class MachManaging
|
|||||||
Map.refLeftPanelVM.PrintLabel(MachGroup, Part)
|
Map.refLeftPanelVM.PrintLabel(MachGroup, Part)
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
' flag di aggiornamento log macchina
|
||||||
|
Map.refMachineLogPageVM.UpdateMachineLogList(False)
|
||||||
' attesa per essere sicuro che abbia scritto e riletto variabili
|
' attesa per essere sicuro che abbia scritto e riletto variabili
|
||||||
Threading.Thread.Sleep(300)
|
Threading.Thread.Sleep(300)
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -25,16 +25,37 @@
|
|||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Height="30">
|
<StackPanel Orientation="Horizontal" Height="30">
|
||||||
|
<TextBlock Text="Entità"
|
||||||
|
Style="{StaticResource Log_TextBlock}"/>
|
||||||
<ComboBox ItemsSource="{Binding EntityTypeList}"
|
<ComboBox ItemsSource="{Binding EntityTypeList}"
|
||||||
SelectedIndex="{Binding SelEntityType}"
|
SelectedIndex="{Binding SelEntityType}"
|
||||||
Width="70"
|
Width="70"
|
||||||
Margin="0,0,2.5,0"
|
Margin="0,0,2.5,0"
|
||||||
Style="{StaticResource PartParam_ComboBox}"/>
|
Style="{StaticResource PartParam_ComboBox}"/>
|
||||||
|
<TextBlock Text="Evento"
|
||||||
|
Style="{StaticResource Log_TextBlock}"/>
|
||||||
<ComboBox ItemsSource="{Binding PartEventTypeList}"
|
<ComboBox ItemsSource="{Binding PartEventTypeList}"
|
||||||
SelectedIndex="{Binding SelPartEventType}"
|
SelectedIndex="{Binding SelPartEventType}"
|
||||||
Width="70"
|
Width="70"
|
||||||
Margin="0,0,2.5,0"
|
Margin="0,0,2.5,0"
|
||||||
Style="{StaticResource PartParam_ComboBox}"/>
|
Style="{StaticResource PartParam_ComboBox}"/>
|
||||||
|
<TextBlock Text="Data"
|
||||||
|
Style="{StaticResource Log_TextBlock}"/>
|
||||||
|
<ComboBox ItemsSource="{Binding DayTypeList}"
|
||||||
|
SelectedIndex="{Binding SelDayType}"
|
||||||
|
Width="70"
|
||||||
|
Margin="0,0,2.5,0"
|
||||||
|
Style="{StaticResource PartParam_ComboBox}"/>
|
||||||
|
<StackPanel Orientation="Horizontal" Visibility="{Binding Date_Visibility}">
|
||||||
|
<TextBlock Text="Dal"
|
||||||
|
Style="{StaticResource Log_TextBlock}"/>
|
||||||
|
<DatePicker SelectedDate="{Binding dtStartDate}"
|
||||||
|
Style="{StaticResource Log_DatePicker}"/>
|
||||||
|
<TextBlock Text="Al"
|
||||||
|
Style="{StaticResource Log_TextBlock}"/>
|
||||||
|
<DatePicker SelectedDate="{Binding dtEndDate}"
|
||||||
|
Style="{StaticResource Log_DatePicker}"/>
|
||||||
|
</StackPanel>
|
||||||
<!--<TextBox Text="{Binding MaxRowNumber}"/>-->
|
<!--<TextBox Text="{Binding MaxRowNumber}"/>-->
|
||||||
<Button Grid.Column="1"
|
<Button Grid.Column="1"
|
||||||
Command="{Binding Refresh_Command}"
|
Command="{Binding Refresh_Command}"
|
||||||
|
|||||||
@@ -9,6 +9,16 @@ Imports EgtBEAMWALL.Core.MachLog
|
|||||||
Public Class MachineLogPageVM
|
Public Class MachineLogPageVM
|
||||||
Inherits VMBase
|
Inherits VMBase
|
||||||
|
|
||||||
|
Private m_Lock_LogList As New Object
|
||||||
|
|
||||||
|
Private m_MachineLog_Timer As New DispatcherTimer
|
||||||
|
|
||||||
|
Private Enum DayTypes As Integer
|
||||||
|
TODAY = 0
|
||||||
|
YESTERDAY = 1
|
||||||
|
PERIOD = 2
|
||||||
|
End Enum
|
||||||
|
|
||||||
Private m_colMachineLog_Type As EgtDataGridColumn
|
Private m_colMachineLog_Type As EgtDataGridColumn
|
||||||
Public ReadOnly Property colMachineLog_Type As EgtDataGridColumn
|
Public ReadOnly Property colMachineLog_Type As EgtDataGridColumn
|
||||||
Get
|
Get
|
||||||
@@ -76,6 +86,7 @@ Public Class MachineLogPageVM
|
|||||||
End Get
|
End Get
|
||||||
Set(value As Integer)
|
Set(value As Integer)
|
||||||
m_SelPartEventType = value
|
m_SelPartEventType = value
|
||||||
|
WriteMainPrivateProfileString(S_MACHINELOGFILTER, K_PARTEVENTTYPE, m_SelPartEventType.ToString())
|
||||||
m_MachineLogList_View.Refresh()
|
m_MachineLogList_View.Refresh()
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
@@ -94,10 +105,75 @@ Public Class MachineLogPageVM
|
|||||||
End Get
|
End Get
|
||||||
Set(value As Integer)
|
Set(value As Integer)
|
||||||
m_SelEntityType = value
|
m_SelEntityType = value
|
||||||
|
WriteMainPrivateProfileString(S_MACHINELOGFILTER, K_ENTITYTYPE, m_SelEntityType.ToString())
|
||||||
m_MachineLogList_View.Refresh()
|
m_MachineLogList_View.Refresh()
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
Private m_DayTypeList As New List(Of String)({"Oggi", "Ieri", "Periodo"})
|
||||||
|
Public ReadOnly Property DayTypeList As List(Of String)
|
||||||
|
Get
|
||||||
|
Return m_DayTypeList
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private m_SelDayType As DayTypes = DayTypes.TODAY
|
||||||
|
Public Property SelDayType As Integer
|
||||||
|
Get
|
||||||
|
Return m_SelDayType
|
||||||
|
End Get
|
||||||
|
Set(value As Integer)
|
||||||
|
Dim PrevSelDayType As DayTypes = m_SelDayType
|
||||||
|
m_SelDayType = value
|
||||||
|
WriteMainPrivateProfileString(S_MACHINELOGFILTER, K_DAYTYPE, Convert.ToInt32(m_SelDayType))
|
||||||
|
m_Date_Visibility = If(m_SelDayType = DayTypes.PERIOD, Visibility.Visible, Visibility.Collapsed)
|
||||||
|
If m_SelDayType = DayTypes.PERIOD Then
|
||||||
|
m_dtStartDate = If(PrevSelDayType = DayTypes.TODAY, DateTime.Today, DateTime.Today - TimeSpan.FromDays(1))
|
||||||
|
m_dtEndDate = If(PrevSelDayType = DayTypes.TODAY, DateTime.Today, DateTime.Today - TimeSpan.FromDays(1))
|
||||||
|
NotifyPropertyChanged(NameOf(dtStartDate))
|
||||||
|
NotifyPropertyChanged(NameOf(dtEndDate))
|
||||||
|
End If
|
||||||
|
NotifyPropertyChanged(NameOf(Date_Visibility))
|
||||||
|
' aggiorno lista da Db
|
||||||
|
UpdateMachineLogList(True)
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private m_dtStartDate As DateTime = DateTime.Today
|
||||||
|
Public Property dtStartDate As DateTime
|
||||||
|
Get
|
||||||
|
Return m_dtStartDate
|
||||||
|
End Get
|
||||||
|
Set(value As DateTime)
|
||||||
|
m_dtStartDate = value
|
||||||
|
Dim lStartDate As Long = m_dtStartDate.ToFileTimeUtc()
|
||||||
|
WriteMainPrivateProfileString(S_MACHINELOGFILTER, K_STARTDATE, lStartDate.ToString())
|
||||||
|
' aggiorno lista da Db
|
||||||
|
UpdateMachineLogList(True)
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private m_dtEndDate As DateTime = DateTime.Today
|
||||||
|
Public Property dtEndDate As DateTime
|
||||||
|
Get
|
||||||
|
Return m_dtEndDate
|
||||||
|
End Get
|
||||||
|
Set(value As DateTime)
|
||||||
|
m_dtEndDate = value
|
||||||
|
Dim lEndDate As Long = m_dtEndDate.ToFileTimeUtc()
|
||||||
|
WriteMainPrivateProfileString(S_MACHINELOGFILTER, K_ENDDATE, lEndDate.ToString())
|
||||||
|
' aggiorno lista da Db
|
||||||
|
UpdateMachineLogList(True)
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
|
||||||
|
Private m_Date_Visibility As Visibility = Visibility.Collapsed
|
||||||
|
Public ReadOnly Property Date_Visibility As Visibility
|
||||||
|
Get
|
||||||
|
Return m_Date_Visibility
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
' Definizione comandi
|
' Definizione comandi
|
||||||
Private m_cmdRefresh As ICommand
|
Private m_cmdRefresh As ICommand
|
||||||
|
|
||||||
@@ -167,6 +243,33 @@ Public Class MachineLogPageVM
|
|||||||
m_colMachineLog_Type = m_MachineLogColumns.FirstOrDefault(Function(x) x.Name = COL_TYPE)
|
m_colMachineLog_Type = m_MachineLogColumns.FirstOrDefault(Function(x) x.Name = COL_TYPE)
|
||||||
m_colMachineLog_Description = m_MachineLogColumns.FirstOrDefault(Function(x) x.Name = COL_DESCRIPTION)
|
m_colMachineLog_Description = m_MachineLogColumns.FirstOrDefault(Function(x) x.Name = COL_DESCRIPTION)
|
||||||
m_colMachineLog_SupervisorId = m_MachineLogColumns.FirstOrDefault(Function(x) x.Name = COL_SUPERVISORID)
|
m_colMachineLog_SupervisorId = m_MachineLogColumns.FirstOrDefault(Function(x) x.Name = COL_SUPERVISORID)
|
||||||
|
' imposto valori filtri da ini
|
||||||
|
m_SelPartEventType = GetMainPrivateProfileInt(S_MACHINELOGFILTER, K_PARTEVENTTYPE, 2)
|
||||||
|
m_SelEntityType = GetMainPrivateProfileInt(S_MACHINELOGFILTER, K_ENTITYTYPE, 1)
|
||||||
|
m_SelDayType = GetMainPrivateProfileInt(S_MACHINELOGFILTER, K_DAYTYPE, 0)
|
||||||
|
Select Case m_SelDayType
|
||||||
|
Case DayTypes.TODAY
|
||||||
|
m_dtStartDate = DateTime.Today
|
||||||
|
m_dtEndDate = DateTime.Today
|
||||||
|
Case DayTypes.YESTERDAY
|
||||||
|
m_dtStartDate = DateTime.Today - TimeSpan.FromDays(1)
|
||||||
|
m_dtEndDate = DateTime.Today - TimeSpan.FromDays(1)
|
||||||
|
Case DayTypes.PERIOD
|
||||||
|
Dim sStartDate As String = "0"
|
||||||
|
Dim lStartDate As Long = 0
|
||||||
|
GetMainPrivateProfileString(S_MACHINELOGFILTER, K_STARTDATE, 0, sStartDate)
|
||||||
|
Long.TryParse(sStartDate, lStartDate)
|
||||||
|
m_dtStartDate = If(lStartDate > 0, DateTime.FromFileTimeUtc(lStartDate), DateTime.Today)
|
||||||
|
Dim sEndDate As String = "0"
|
||||||
|
Dim lEndDate As Long = 0
|
||||||
|
GetMainPrivateProfileString(S_MACHINELOGFILTER, K_ENDDATE, 0, sEndDate)
|
||||||
|
Long.TryParse(sEndDate, lEndDate)
|
||||||
|
m_dtEndDate = If(lEndDate > 0, DateTime.FromFileTimeUtc(lEndDate), DateTime.Today)
|
||||||
|
m_Date_Visibility = Visibility.Visible
|
||||||
|
End Select
|
||||||
|
m_MachineLog_Timer.Interval = TimeSpan.FromMilliseconds(100)
|
||||||
|
AddHandler m_MachineLog_Timer.Tick, AddressOf MachineLog_Timer_Tick
|
||||||
|
m_MachineLog_Timer.Start()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' CONSTRUCTORS
|
#End Region ' CONSTRUCTORS
|
||||||
@@ -209,13 +312,69 @@ Public Class MachineLogPageVM
|
|||||||
m_colMachineLog_Description.ColumnVisibility = Visibility.Collapsed
|
m_colMachineLog_Description.ColumnVisibility = Visibility.Collapsed
|
||||||
m_colMachineLog_SupervisorId.ColumnVisibility = Visibility.Collapsed
|
m_colMachineLog_SupervisorId.ColumnVisibility = Visibility.Collapsed
|
||||||
End If
|
End If
|
||||||
UpdateMachineLogList()
|
UpdateMachineLogList(True)
|
||||||
m_MachineLogList_View = CollectionViewSource.GetDefaultView(m_MachineLogList)
|
m_MachineLogList_View = CollectionViewSource.GetDefaultView(m_MachineLogList)
|
||||||
m_MachineLogList_View.Filter = AddressOf MachineLogFilter
|
m_MachineLogList_View.Filter = AddressOf MachineLogFilter
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Friend Sub UpdateMachineLogList()
|
' indice di aggiornamento della lista rispetto a Db
|
||||||
m_MachineLogList = New ObservableCollection(Of LogEvent)(DbControllers.m_LogMachineController.GetCoreDesc(DateTime.Now - TimeSpan.FromDays(300), DateTime.Now).Select(Of LogEvent)(Function(x) New LogEvent(x)).ToList())
|
Private m_nUpdateIndex As Integer
|
||||||
|
' indice di ricaricamento completo della lista dal Db
|
||||||
|
Private m_nRefreshIndex As Integer
|
||||||
|
' indice dell'ultimo update/refresh
|
||||||
|
Private m_nLastLogUpdate As Integer
|
||||||
|
|
||||||
|
Friend Sub UpdateMachineLogList(bRefresh As Boolean)
|
||||||
|
Dim nMaxIndex As Integer = Math.Max(m_nUpdateIndex, m_nRefreshIndex)
|
||||||
|
If bRefresh Then
|
||||||
|
m_nRefreshIndex = nMaxIndex + 1
|
||||||
|
Else
|
||||||
|
m_nUpdateIndex = nMaxIndex + 1
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub MachineLog_Timer_Tick(sender As Object, e As EventArgs)
|
||||||
|
SyncLock m_Lock_LogList
|
||||||
|
Dim nRefresh As Integer = m_nRefreshIndex
|
||||||
|
Dim nUpdate As Integer = m_nUpdateIndex
|
||||||
|
If nRefresh > m_nLastLogUpdate Then
|
||||||
|
m_nLastLogUpdate = nRefresh
|
||||||
|
UpdateFromDb(True)
|
||||||
|
ElseIf nUpdate > m_nLastLogUpdate Then
|
||||||
|
m_nLastLogUpdate = nUpdate
|
||||||
|
UpdateFromDb(False)
|
||||||
|
End If
|
||||||
|
End SyncLock
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Friend Sub UpdateFromDb(bRefresh As Boolean)
|
||||||
|
'm_MachineLogList = New ObservableCollection(Of LogEvent)(DbControllers.m_LogMachineController.GetCoreDesc(DateTime.Now - TimeSpan.FromDays(300), DateTime.Now).Select(Of LogEvent)(Function(x) New LogEvent(x)).ToList())
|
||||||
|
Dim DbList As List(Of LogEvent)
|
||||||
|
Select Case m_SelDayType
|
||||||
|
Case DayTypes.PERIOD
|
||||||
|
DbList = DbControllers.m_LogMachineController.GetCoreDesc(m_dtStartDate, m_dtEndDate + TimeSpan.FromDays(1)).Select(Of LogEvent)(Function(x) New LogEvent(x)).ToList()
|
||||||
|
Case DayTypes.YESTERDAY
|
||||||
|
DbList = DbControllers.m_LogMachineController.GetCoreDesc(DateTime.Today - TimeSpan.FromDays(1), DateTime.Today).Select(Of LogEvent)(Function(x) New LogEvent(x)).ToList()
|
||||||
|
Case Else ' DayTypes.TODAY
|
||||||
|
DbList = DbControllers.m_LogMachineController.GetCoreDesc(DateTime.Today, DateTime.Today + TimeSpan.FromDays(1)).Select(Of LogEvent)(Function(x) New LogEvent(x)).ToList()
|
||||||
|
End Select
|
||||||
|
If bRefresh OrElse m_MachineLogList.Count < 1 Then
|
||||||
|
m_MachineLogList = New ObservableCollection(Of LogEvent)(DbList)
|
||||||
|
Else
|
||||||
|
' cerco in lista Db ultimo elemento della mia lista
|
||||||
|
Dim LastItem As LogEvent = m_MachineLogList(0)
|
||||||
|
Dim CommonItem As LogEvent = DbList.FirstOrDefault(Function(x) x.EventDateTime = LastItem.EventDateTime AndAlso x.EventType = LastItem.EventType AndAlso x.SupervisorId = LastItem.SupervisorId AndAlso x.Value = LastItem.Value)
|
||||||
|
Dim nCommonItemIndex As Integer
|
||||||
|
If Not IsNothing(CommonItem) Then
|
||||||
|
nCommonItemIndex = DbList.IndexOf(CommonItem)
|
||||||
|
End If
|
||||||
|
' aggiorno i successivi
|
||||||
|
If nCommonItemIndex >= 0 Then
|
||||||
|
For Index = nCommonItemIndex - 1 To 0 Step -1
|
||||||
|
m_MachineLogList.Insert(0, DbList(Index))
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
End If
|
||||||
NotifyPropertyChanged(NameOf(MachineLogList))
|
NotifyPropertyChanged(NameOf(MachineLogList))
|
||||||
m_MachineLogList_View = CollectionViewSource.GetDefaultView(m_MachineLogList)
|
m_MachineLogList_View = CollectionViewSource.GetDefaultView(m_MachineLogList)
|
||||||
m_MachineLogList_View.Filter = AddressOf MachineLogFilter
|
m_MachineLogList_View.Filter = AddressOf MachineLogFilter
|
||||||
@@ -243,7 +402,7 @@ Public Class MachineLogPageVM
|
|||||||
''' Execute the Open. This method is invoked by the OpenCommand.
|
''' Execute the Open. This method is invoked by the OpenCommand.
|
||||||
''' </summary>
|
''' </summary>
|
||||||
Friend Sub Refresh()
|
Friend Sub Refresh()
|
||||||
UpdateMachineLogList()
|
UpdateMachineLogList(False)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
#End Region ' Refresh
|
#End Region ' Refresh
|
||||||
|
|||||||
@@ -342,6 +342,11 @@
|
|||||||
<Setter Property="VerticalAlignment" Value="Center"/>
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
<Setter Property="Margin" Value="10,0,10,0"/>
|
<Setter Property="Margin" Value="10,0,10,0"/>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="Log_TextBlock" TargetType="{x:Type TextBlock}" BasedOn="{StaticResource {x:Type TextBlock}}">
|
||||||
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
|
<Setter Property="Margin" Value="5,0,5,0"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
<!-- ______________________________________________________________________________________________________________________________________________ -->
|
<!-- ______________________________________________________________________________________________________________________________________________ -->
|
||||||
|
|
||||||
@@ -720,4 +725,13 @@
|
|||||||
|
|
||||||
<!-- ______________________________________________________________________________________________________________________________________________ -->
|
<!-- ______________________________________________________________________________________________________________________________________________ -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- DatePicker -->
|
||||||
|
|
||||||
|
<Style x:Key="Log_DatePicker" TargetType="{x:Type DatePicker}">
|
||||||
|
<Setter Property="Height" Value="22" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<!-- ______________________________________________________________________________________________________________________________________________ -->
|
||||||
|
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
|||||||
Reference in New Issue
Block a user