개정판 c5fe2a1f
#issue 0007 - PEMSS의 사용자ID 전달
- MainMenu.xaml의 제거된 버튼 복구
Change-Id: Ia4231d7dd9b34d9f6b82a4ee587c01d4b852cad1
KCOM/Views/MainMenu.xaml | ||
---|---|---|
457 | 457 |
<TextBlock Grid.Column="1" |
458 | 458 |
Foreground="Blue" |
459 | 459 |
Text="{Binding PartConsolidate, |
460 |
Converter={StaticResource TeamConsoliStringConverter}}" />
|
|
460 |
Converter={StaticResource nTeamCosoliStringConverter}}" />
|
|
461 | 461 |
<TextBlock Grid.Column="2" Text="{Binding Consolidate, Converter={StaticResource ConsoliStringConverter}}" /> |
462 | 462 |
<!-- |
463 | 463 |
<TextBlock HorizontalAlignment="Center" Grid.Column="2"> |
... | ... | |
566 | 566 |
<telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedBottom" Height="250"> |
567 | 567 |
<telerik:RadPaneGroup telerik:StyleManager.Theme="Office2016" telerik:ProportionalStackPanel.RelativeSize="140, 100"> |
568 | 568 |
<telerik:RadPane Header="Document Information" CanUserClose="False" CanFloat="False"> |
569 |
<telerik:RadPane.TitleTemplate> |
|
570 |
<DataTemplate> |
|
571 |
<Grid> |
|
572 |
<Grid.ColumnDefinitions> |
|
573 |
<ColumnDefinition Width="*" /> |
|
574 |
<ColumnDefinition Width="Auto" /> |
|
575 |
</Grid.ColumnDefinitions> |
|
576 |
|
|
577 |
<StackPanel Orientation="Horizontal"> |
|
578 |
<TextBlock Margin="1" |
|
579 |
VerticalAlignment="Center" |
|
580 |
Text="{Binding}" /> |
|
581 |
<telerik:RadRibbonButton x:Name="btnConsolidate" |
|
582 |
VerticalAlignment="Center" |
|
583 |
Click="btnConsolidate_Click" |
|
584 |
Loaded="btnConsolidate_Loaded" |
|
585 |
telerik:StyleManager.Theme="Office2016" |
|
586 |
ToolTipService.ToolTip="Consolidate"> |
|
587 |
<Border Background="#E9F0F8" |
|
588 |
BorderBrush="#839AB3" |
|
589 |
BorderThickness="1"> |
|
590 |
<StackPanel Margin="1" Orientation="Horizontal"> |
|
591 |
<!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/document-new.png" />--> |
|
592 |
<TextBlock Margin="1" |
|
593 |
VerticalAlignment="Center" |
|
594 |
Foreground="Black" |
|
595 |
Text="Consolidate" /> |
|
596 |
</StackPanel> |
|
597 |
</Border> |
|
598 |
</telerik:RadRibbonButton> |
|
599 |
<telerik:RadRibbonButton x:Name="btnTeamConsolidate" |
|
600 |
VerticalAlignment="Center" |
|
601 |
Click="btnTeamConsolidate_Click" |
|
602 |
Loaded="btnTeamConsolidate_Loaded" |
|
603 |
telerik:StyleManager.Theme="Office2016" |
|
604 |
ToolTipService.ToolTip="Consolidate"> |
|
605 |
<Border Background="#E9F0F8" |
|
606 |
BorderBrush="#839AB3" |
|
607 |
BorderThickness="1"> |
|
608 |
<StackPanel Margin="1" Orientation="Horizontal"> |
|
609 |
<!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/document-team.png" />--> |
|
610 |
<TextBlock Margin="1" |
|
611 |
VerticalAlignment="Center" |
|
612 |
Foreground="Black" |
|
613 |
Text="Team Consolidate" /> |
|
614 |
</StackPanel> |
|
615 |
</Border> |
|
616 |
</telerik:RadRibbonButton> |
|
617 |
<telerik:RadRibbonButton x:Name="btnFinalPDF" |
|
618 |
VerticalAlignment="Center" |
|
619 |
Click="FinalPDFEvent" |
|
620 |
Loaded="btnFinalPDF_Loaded" |
|
621 |
telerik:StyleManager.Theme="Office2016" |
|
622 |
ToolTipService.ToolTip="FinalPDF"> |
|
623 |
<Border Background="#E9F0F8" |
|
624 |
BorderBrush="#839AB3" |
|
625 |
BorderThickness="1"> |
|
626 |
<StackPanel Margin="1" Orientation="Horizontal"> |
|
627 |
<!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/final_pdf2.png" />--> |
|
628 |
<TextBlock Margin="1" |
|
629 |
VerticalAlignment="Center" |
|
630 |
Foreground="Black" |
|
631 |
Text="Merged PDF" /> |
|
632 |
</StackPanel> |
|
633 |
</Border> |
|
634 |
</telerik:RadRibbonButton> |
|
635 |
<telerik:RadRibbonButton x:Name="btnConsolidateFinalPDF" |
|
636 |
VerticalAlignment="Center" |
|
637 |
Click="ConsolidateFinalPDFEvent" |
|
638 |
Loaded="btnConsolidateFinalPDF_Loaded" |
|
639 |
telerik:StyleManager.Theme="Office2016" |
|
640 |
ToolTipService.ToolTip="Consolidate & FinalPDF"> |
|
641 |
<Border Background="#E9F0F8" |
|
642 |
BorderBrush="#839AB3" |
|
643 |
BorderThickness="1"> |
|
644 |
<StackPanel Margin="1" Orientation="Horizontal"> |
|
645 |
<!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/final_pdf2.png" />--> |
|
646 |
<TextBlock Margin="1" |
|
647 |
VerticalAlignment="Center" |
|
648 |
Foreground="Black" |
|
649 |
Text="Consolidate & Merged PDF" /> |
|
650 |
</StackPanel> |
|
651 |
</Border> |
|
652 |
</telerik:RadRibbonButton> |
|
653 |
</StackPanel> |
|
654 |
</Grid> |
|
655 |
</DataTemplate> |
|
656 |
</telerik:RadPane.TitleTemplate> |
|
569 | 657 |
<Grid> |
570 | 658 |
<Grid.ColumnDefinitions> |
571 | 659 |
<ColumnDefinition Width="60*"/> |
내보내기 Unified diff