-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
1611 lines (1609 loc) · 192 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<dxr:DXRibbonWindow
xmlns:dxr="http://schemas.devexpress.com/winfx/2008/xaml/ribbon"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfSpreadsheet_BindToDataSource"
xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars"
xmlns:dxsps="http://schemas.devexpress.com/winfx/2008/xaml/spreadsheet"
xmlns:Custom="http://schemas.devexpress.com/winfx/2008/xaml/richedit"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core" x:Class="WpfSpreadsheet_BindToDataSource.MainWindow" mc:Ignorable="d" Title="Northwind Suppliers Example" Height="527" Width="918"
>
<Grid>
<dxb:BarManager x:Name="barManager1" ToolbarGlyphSize="Small">
<dxb:BarManager.Resources>
<dxsps:SpreadsheetUICommand x:Key="commands" />
<dxsps:SpreadsheetStringIdConverter x:Key="stringIdConverter" />
<dxsps:SpreadsheetDefaultBarItemDataTemplates x:Key="defaultBarItemTemplates" />
</dxb:BarManager.Resources>
<dxb:BarManager.Items>
<dxb:BarButtonItem x:Name="biFileNew" Command="{Binding FileNew, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileOpen" Command="{Binding FileOpen, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileSave" Command="{Binding FileSave, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileSaveAs" Command="{Binding FileSaveAs, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileQuickPrint" Command="{Binding FileQuickPrint, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFilePrint" Command="{Binding FilePrint, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFilePrintPreview" Command="{Binding FilePrintPreview, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileUndo" Command="{Binding FileUndo, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileRedo" Command="{Binding FileRedo, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileEncrypt" Command="{Binding FileEncrypt, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFileShowDocumentProperties" Command="{Binding FileShowDocumentProperties, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditPaste" Command="{Binding EditPaste, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditCut" Command="{Binding EditCut, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText" />
<dxb:BarButtonItem x:Name="biEditCopy" Command="{Binding EditCopy, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText" />
<dxb:BarButtonItem x:Name="biEditPasteSpecial" Command="{Binding EditPasteSpecial, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText" />
<dxr:BarButtonGroup x:Name="biFont">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarEditItemLink BarItemName="biFormatFontName" />
<dxb:BarEditItemLink BarItemName="biFormatFontSize" />
<dxb:BarButtonItemLink BarItemName="biFormatIncreaseFontSize" />
<dxb:BarButtonItemLink BarItemName="biFormatDecreaseFontSize" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarEditItem x:Name="biFormatFontName" Content="" Command="{Binding FormatFontName, Mode=OneTime, Source={StaticResource commands}}" EditWidth="150">
<dxb:BarEditItem.EditSettings>
<Custom:FontComboBoxEditSettings />
</dxb:BarEditItem.EditSettings>
</dxb:BarEditItem>
<dxb:BarEditItem x:Name="biFormatFontSize" Content="" Command="{Binding FormatFontSize, Mode=OneTime, Source={StaticResource commands}}" EditWidth="50">
<dxb:BarEditItem.EditSettings>
<Custom:FontSizeComboBoxEditSettings OfficeFontSizeProvider="{Binding ElementName=spreadsheetControl}" />
</dxb:BarEditItem.EditSettings>
</dxb:BarEditItem>
<dxb:BarButtonItem x:Name="biFormatIncreaseFontSize" Command="{Binding FormatIncreaseFontSize, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatDecreaseFontSize" Command="{Binding FormatDecreaseFontSize, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:BarButtonGroup x:Name="biFontShape">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarCheckItemLink BarItemName="biFormatFontBold" />
<dxb:BarCheckItemLink BarItemName="biFormatFontItalic" />
<dxb:BarCheckItemLink BarItemName="biFormatFontUnderline" />
<dxb:BarCheckItemLink BarItemName="biFormatFontStrikeout" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarCheckItem x:Name="biFormatFontBold" Command="{Binding FormatFontBold, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatFontItalic" Command="{Binding FormatFontItalic, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatFontUnderline" Command="{Binding FormatFontUnderline, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatFontStrikeout" Command="{Binding FormatFontStrikeout, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:BarButtonGroup x:Name="biFontColor">
<dxr:BarButtonGroup.ItemLinks>
<Custom:BarSplitButtonColorEditItemLink BarItemName="biFormatFontColor" />
<Custom:BarSplitButtonColorEditItemLink BarItemName="biFormatFillColor" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<Custom:BarSplitButtonColorEditItem x:Name="biFormatFontColor" Command="{Binding FormatFontColor, Mode=OneTime, Source={StaticResource commands}}">
<dxb:PopupControlContainerInfo>
<dxe:ColorEdit EditValue="{Binding EditValue, ElementName=biFormatFontColor, Mode=TwoWay}" ShowBorder="False" />
</dxb:PopupControlContainerInfo>
</Custom:BarSplitButtonColorEditItem>
<Custom:BarSplitButtonColorEditItem x:Name="biFormatFillColor" Command="{Binding FormatFillColor, Mode=OneTime, Source={StaticResource commands}}">
<dxb:PopupControlContainerInfo>
<dxe:ColorEdit EditValue="{Binding EditValue, ElementName=biFormatFillColor, Mode=TwoWay}" ShowBorder="False" />
</dxb:PopupControlContainerInfo>
</Custom:BarSplitButtonColorEditItem>
<dxr:BarButtonGroup x:Name="bi">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarSubItemLink BarItemName="biFormatBordersCommandGroup" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarSubItem x:Name="biFormatBordersCommandGroup" Command="{Binding FormatBordersCommandGroup, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithoutText">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFormatBottomBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatTopBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatLeftBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatRightBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatNoBorders" />
<dxb:BarButtonItemLink BarItemName="biFormatAllBorders" />
<dxb:BarButtonItemLink BarItemName="biFormatOutsideBorders" />
<dxb:BarButtonItemLink BarItemName="biFormatThickBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatBottomDoubleBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatBottomThickBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatTopAndBottomBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatTopAndThickBottomBorder" />
<dxb:BarButtonItemLink BarItemName="biFormatTopAndDoubleBottomBorder" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biFormatBottomBorder" Command="{Binding FormatBottomBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatTopBorder" Command="{Binding FormatTopBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatLeftBorder" Command="{Binding FormatLeftBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatRightBorder" Command="{Binding FormatRightBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNoBorders" Command="{Binding FormatNoBorders, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatAllBorders" Command="{Binding FormatAllBorders, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatOutsideBorders" Command="{Binding FormatOutsideBorders, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatThickBorder" Command="{Binding FormatThickBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatBottomDoubleBorder" Command="{Binding FormatBottomDoubleBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatBottomThickBorder" Command="{Binding FormatBottomThickBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatTopAndBottomBorder" Command="{Binding FormatTopAndBottomBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatTopAndThickBottomBorder" Command="{Binding FormatTopAndThickBottomBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatTopAndDoubleBottomBorder" Command="{Binding FormatTopAndDoubleBottomBorder, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:BarButtonGroup x:Name="biVerticalAlignment">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarCheckItemLink BarItemName="biFormatAlignmentTop" />
<dxb:BarCheckItemLink BarItemName="biFormatAlignmentMiddle" />
<dxb:BarCheckItemLink BarItemName="biFormatAlignmentBottom" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarCheckItem x:Name="biFormatAlignmentTop" Command="{Binding FormatAlignmentTop, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatAlignmentMiddle" Command="{Binding FormatAlignmentMiddle, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatAlignmentBottom" Command="{Binding FormatAlignmentBottom, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:BarButtonGroup x:Name="biHorizontalAlignment">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarCheckItemLink BarItemName="biFormatAlignmentLeft" />
<dxb:BarCheckItemLink BarItemName="biFormatAlignmentCenter" />
<dxb:BarCheckItemLink BarItemName="biFormatAlignmentRight" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarCheckItem x:Name="biFormatAlignmentLeft" Command="{Binding FormatAlignmentLeft, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatAlignmentCenter" Command="{Binding FormatAlignmentCenter, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatAlignmentRight" Command="{Binding FormatAlignmentRight, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:BarButtonGroup x:Name="biIndent">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFormatDecreaseIndent" />
<dxb:BarButtonItemLink BarItemName="biFormatIncreaseIndent" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarButtonItem x:Name="biFormatDecreaseIndent" Command="{Binding FormatDecreaseIndent, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatIncreaseIndent" Command="{Binding FormatIncreaseIndent, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatWrapText" Command="{Binding FormatWrapText, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText" />
<dxb:BarSubItem x:Name="biEditingMergeCellsCommandGroup" Command="{Binding EditingMergeCellsCommandGroup, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText">
<dxb:BarSubItem.ItemLinks>
<dxb:BarCheckItemLink BarItemName="biEditingMergeAndCenterCells" />
<dxb:BarButtonItemLink BarItemName="biEditingMergeCellsAcross" />
<dxb:BarButtonItemLink BarItemName="biEditingMergeCells" />
<dxb:BarButtonItemLink BarItemName="biEditingUnmergeCells" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarCheckItem x:Name="biEditingMergeAndCenterCells" Command="{Binding EditingMergeAndCenterCells, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingMergeCellsAcross" Command="{Binding EditingMergeCellsAcross, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingMergeCells" Command="{Binding EditingMergeCells, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingUnmergeCells" Command="{Binding EditingUnmergeCells, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:BarButtonGroup x:Name="biFormatNumbers">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarSubItemLink BarItemName="biFormatNumberAccountingCommandGroup" />
<dxb:BarButtonItemLink BarItemName="biFormatNumberPercent" />
<dxb:BarButtonItemLink BarItemName="biFormatNumberAccounting" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarSubItem x:Name="biFormatNumberAccountingCommandGroup" Command="{Binding FormatNumberAccountingCommandGroup, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithoutText">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFormatNumberAccountingUS" />
<dxb:BarButtonItemLink BarItemName="biFormatNumberAccountingUK" />
<dxb:BarButtonItemLink BarItemName="biFormatNumberAccountingEuro" />
<dxb:BarButtonItemLink BarItemName="biFormatNumberAccountingPRC" />
<dxb:BarButtonItemLink BarItemName="biFormatNumberAccountingSwiss" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biFormatNumberAccountingUS" Command="{Binding FormatNumberAccountingUS, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNumberAccountingUK" Command="{Binding FormatNumberAccountingUK, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNumberAccountingEuro" Command="{Binding FormatNumberAccountingEuro, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNumberAccountingPRC" Command="{Binding FormatNumberAccountingPRC, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNumberAccountingSwiss" Command="{Binding FormatNumberAccountingSwiss, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNumberPercent" Command="{Binding FormatNumberPercent, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNumberAccounting" Command="{Binding FormatNumberAccounting, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:BarButtonGroup x:Name="biFormatNumberDecimals">
<dxr:BarButtonGroup.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFormatNumberIncreaseDecimal" />
<dxb:BarButtonItemLink BarItemName="biFormatNumberDecreaseDecimal" />
</dxr:BarButtonGroup.ItemLinks>
</dxr:BarButtonGroup>
<dxb:BarButtonItem x:Name="biFormatNumberIncreaseDecimal" Command="{Binding FormatNumberIncreaseDecimal, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatNumberDecreaseDecimal" Command="{Binding FormatNumberDecreaseDecimal, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingCommandGroup" Command="{Binding ConditionalFormattingCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarSubItemLink BarItemName="biConditionalFormattingHighlightCellsCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingTopBottomCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingDataBarsCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingColorScalesCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingIconSetsCommandGroup" />
<dxb:BarButtonItemLink BarItemName="biNewConditionalFormattingRule" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingRemoveCommandGroup" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarSubItem x:Name="biConditionalFormattingHighlightCellsCommandGroup" Command="{Binding ConditionalFormattingHighlightCellsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingGreaterThan" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingLessThan" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingBetween" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingEqual" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingTextContains" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDateOccurring" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDuplicateValues" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingGreaterThan" Command="{Binding ConditionalFormattingGreaterThan, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingLessThan" Command="{Binding ConditionalFormattingLessThan, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingBetween" Command="{Binding ConditionalFormattingBetween, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingEqual" Command="{Binding ConditionalFormattingEqual, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingTextContains" Command="{Binding ConditionalFormattingTextContains, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDateOccurring" Command="{Binding ConditionalFormattingDateOccurring, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDuplicateValues" Command="{Binding ConditionalFormattingDuplicateValues, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingTopBottomCommandGroup" Command="{Binding ConditionalFormattingTopBottomCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingTop10Items" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingTop10Percent" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingBottom10Items" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingBottom10Percent" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingAboveAverage" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingBelowAverage" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingTop10Items" Command="{Binding ConditionalFormattingTop10Items, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingTop10Percent" Command="{Binding ConditionalFormattingTop10Percent, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingBottom10Items" Command="{Binding ConditionalFormattingBottom10Items, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingBottom10Percent" Command="{Binding ConditionalFormattingBottom10Percent, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingAboveAverage" Command="{Binding ConditionalFormattingAboveAverage, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingBelowAverage" Command="{Binding ConditionalFormattingBelowAverage, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingDataBarsCommandGroup" Command="{Binding ConditionalFormattingDataBarsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarSubItemLink BarItemName="biConditionalFormattingDataBarsGradientFillCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingDataBarsSolidFillCommandGroup" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarSubItem x:Name="biConditionalFormattingDataBarsGradientFillCommandGroup" Command="{Binding ConditionalFormattingDataBarsGradientFillCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarGradientBlue" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarGradientGreen" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarGradientRed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarGradientOrange" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarGradientLightBlue" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarGradientPurple" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarGradientBlue" Command="{Binding ConditionalFormattingDataBarGradientBlue, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarGradientGreen" Command="{Binding ConditionalFormattingDataBarGradientGreen, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarGradientRed" Command="{Binding ConditionalFormattingDataBarGradientRed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarGradientOrange" Command="{Binding ConditionalFormattingDataBarGradientOrange, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarGradientLightBlue" Command="{Binding ConditionalFormattingDataBarGradientLightBlue, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarGradientPurple" Command="{Binding ConditionalFormattingDataBarGradientPurple, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingDataBarsSolidFillCommandGroup" Command="{Binding ConditionalFormattingDataBarsSolidFillCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarSolidBlue" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarSolidGreen" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarSolidRed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarSolidOrange" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarSolidLightBlue" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingDataBarSolidPurple" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarSolidBlue" Command="{Binding ConditionalFormattingDataBarSolidBlue, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarSolidGreen" Command="{Binding ConditionalFormattingDataBarSolidGreen, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarSolidRed" Command="{Binding ConditionalFormattingDataBarSolidRed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarSolidOrange" Command="{Binding ConditionalFormattingDataBarSolidOrange, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarSolidLightBlue" Command="{Binding ConditionalFormattingDataBarSolidLightBlue, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingDataBarSolidPurple" Command="{Binding ConditionalFormattingDataBarSolidPurple, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingColorScalesCommandGroup" Command="{Binding ConditionalFormattingColorScalesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleGreenYellowRed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleRedYellowGreen" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleGreenWhiteRed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleRedWhiteGreen" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleBlueWhiteRed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleRedWhiteBlue" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleWhiteRed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleRedWhite" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleGreenWhite" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleWhiteGreen" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleGreenYellow" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingColorScaleYellowGreen" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleGreenYellowRed" Command="{Binding ConditionalFormattingColorScaleGreenYellowRed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleRedYellowGreen" Command="{Binding ConditionalFormattingColorScaleRedYellowGreen, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleGreenWhiteRed" Command="{Binding ConditionalFormattingColorScaleGreenWhiteRed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleRedWhiteGreen" Command="{Binding ConditionalFormattingColorScaleRedWhiteGreen, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleBlueWhiteRed" Command="{Binding ConditionalFormattingColorScaleBlueWhiteRed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleRedWhiteBlue" Command="{Binding ConditionalFormattingColorScaleRedWhiteBlue, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleWhiteRed" Command="{Binding ConditionalFormattingColorScaleWhiteRed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleRedWhite" Command="{Binding ConditionalFormattingColorScaleRedWhite, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleGreenWhite" Command="{Binding ConditionalFormattingColorScaleGreenWhite, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleWhiteGreen" Command="{Binding ConditionalFormattingColorScaleWhiteGreen, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleGreenYellow" Command="{Binding ConditionalFormattingColorScaleGreenYellow, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingColorScaleYellowGreen" Command="{Binding ConditionalFormattingColorScaleYellowGreen, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingIconSetsCommandGroup" Command="{Binding ConditionalFormattingIconSetsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarSubItemLink BarItemName="biConditionalFormattingIconSetsDirectionalCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingIconSetsShapesCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingIconSetsIndicatorsCommandGroup" />
<dxb:BarSubItemLink BarItemName="biConditionalFormattingIconSetsRatingsCommandGroup" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarSubItem x:Name="biConditionalFormattingIconSetsDirectionalCommandGroup" Command="{Binding ConditionalFormattingIconSetsDirectionalCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetArrows3Colored" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetArrows3Grayed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetArrows4Colored" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetArrows4Grayed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetArrows5Colored" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetArrows5Grayed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetTriangles3" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetArrows3Colored" Command="{Binding ConditionalFormattingIconSetArrows3Colored, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetArrows3Grayed" Command="{Binding ConditionalFormattingIconSetArrows3Grayed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetArrows4Colored" Command="{Binding ConditionalFormattingIconSetArrows4Colored, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetArrows4Grayed" Command="{Binding ConditionalFormattingIconSetArrows4Grayed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetArrows5Colored" Command="{Binding ConditionalFormattingIconSetArrows5Colored, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetArrows5Grayed" Command="{Binding ConditionalFormattingIconSetArrows5Grayed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetTriangles3" Command="{Binding ConditionalFormattingIconSetTriangles3, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingIconSetsShapesCommandGroup" Command="{Binding ConditionalFormattingIconSetsShapesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetTrafficLights3" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetTrafficLights3Rimmed" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetTrafficLights4" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetSigns3" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetRedToBlack" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetTrafficLights3" Command="{Binding ConditionalFormattingIconSetTrafficLights3, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetTrafficLights3Rimmed" Command="{Binding ConditionalFormattingIconSetTrafficLights3Rimmed, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetTrafficLights4" Command="{Binding ConditionalFormattingIconSetTrafficLights4, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetSigns3" Command="{Binding ConditionalFormattingIconSetSigns3, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetRedToBlack" Command="{Binding ConditionalFormattingIconSetRedToBlack, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingIconSetsIndicatorsCommandGroup" Command="{Binding ConditionalFormattingIconSetsIndicatorsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetSymbols3Circled" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetSymbols3" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetFlags3" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetSymbols3Circled" Command="{Binding ConditionalFormattingIconSetSymbols3Circled, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetSymbols3" Command="{Binding ConditionalFormattingIconSetSymbols3, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetFlags3" Command="{Binding ConditionalFormattingIconSetFlags3, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingIconSetsRatingsCommandGroup" Command="{Binding ConditionalFormattingIconSetsRatingsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetStars3" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetRatings4" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetRatings5" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetQuarters5" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingIconSetBoxes5" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetStars3" Command="{Binding ConditionalFormattingIconSetStars3, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetRatings4" Command="{Binding ConditionalFormattingIconSetRatings4, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetRatings5" Command="{Binding ConditionalFormattingIconSetRatings5, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetQuarters5" Command="{Binding ConditionalFormattingIconSetQuarters5, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingIconSetBoxes5" Command="{Binding ConditionalFormattingIconSetBoxes5, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biNewConditionalFormattingRule" Command="{Binding NewConditionalFormattingRule, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biConditionalFormattingRemoveCommandGroup" Command="{Binding ConditionalFormattingRemoveCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingRemoveFromSheet" />
<dxb:BarButtonItemLink BarItemName="biConditionalFormattingRemove" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biConditionalFormattingRemoveFromSheet" Command="{Binding ConditionalFormattingRemoveFromSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biConditionalFormattingRemove" Command="{Binding ConditionalFormattingRemove, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biInsertCellsCommandGroup" Command="{Binding InsertCellsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biInsertSheetRows" />
<dxb:BarButtonItemLink BarItemName="biInsertSheetColumns" />
<dxb:BarButtonItemLink BarItemName="biInsertSheet" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biInsertSheetRows" Command="{Binding InsertSheetRows, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biInsertSheetColumns" Command="{Binding InsertSheetColumns, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biInsertSheet" Command="{Binding InsertSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biRemoveCellsCommandGroup" Command="{Binding RemoveCellsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biRemoveSheetRows" />
<dxb:BarButtonItemLink BarItemName="biRemoveSheetColumns" />
<dxb:BarButtonItemLink BarItemName="biRemoveSheet" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biRemoveSheetRows" Command="{Binding RemoveSheetRows, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biRemoveSheetColumns" Command="{Binding RemoveSheetColumns, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biRemoveSheet" Command="{Binding RemoveSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biFormatCommandGroup" Command="{Binding FormatCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFormatRowHeight" />
<dxb:BarButtonItemLink BarItemName="biFormatAutoFitRowHeight" />
<dxb:BarButtonItemLink BarItemName="biFormatColumnWidth" />
<dxb:BarButtonItemLink BarItemName="biFormatAutoFitColumnWidth" />
<dxb:BarButtonItemLink BarItemName="biFormatDefaultColumnWidth" />
<dxb:BarSubItemLink BarItemName="biFormatHideAndUnhideCommandGroup" />
<dxb:BarButtonItemLink BarItemName="biRenameSheet" />
<dxb:BarButtonItemLink BarItemName="biMoveOrCopySheet" />
<Custom:BarButtonColorEditItemLink BarItemName="biFormatTabColor" />
<dxb:BarButtonItemLink BarItemName="biReviewProtectSheet" />
<dxb:BarCheckItemLink BarItemName="biFormatCellLocked" />
<dxb:BarButtonItemLink BarItemName="biFormatCells" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biFormatRowHeight" Command="{Binding FormatRowHeight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatAutoFitRowHeight" Command="{Binding FormatAutoFitRowHeight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatColumnWidth" Command="{Binding FormatColumnWidth, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatAutoFitColumnWidth" Command="{Binding FormatAutoFitColumnWidth, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatDefaultColumnWidth" Command="{Binding FormatDefaultColumnWidth, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biFormatHideAndUnhideCommandGroup" Command="{Binding FormatHideAndUnhideCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFormatHideRows" />
<dxb:BarButtonItemLink BarItemName="biFormatHideColumns" />
<dxb:BarButtonItemLink BarItemName="biFormatHideSheet" />
<dxb:BarButtonItemLink BarItemName="biFormatUnhideRows" />
<dxb:BarButtonItemLink BarItemName="biFormatUnhideColumns" />
<dxb:BarButtonItemLink BarItemName="biFormatUnhideSheet" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biFormatHideRows" Command="{Binding FormatHideRows, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatHideColumns" Command="{Binding FormatHideColumns, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatHideSheet" Command="{Binding FormatHideSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatUnhideRows" Command="{Binding FormatUnhideRows, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatUnhideColumns" Command="{Binding FormatUnhideColumns, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatUnhideSheet" Command="{Binding FormatUnhideSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biRenameSheet" Command="{Binding RenameSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biMoveOrCopySheet" Command="{Binding MoveOrCopySheet, Mode=OneTime, Source={StaticResource commands}}" />
<Custom:BarButtonColorEditItem x:Name="biFormatTabColor" Command="{Binding FormatTabColor, Mode=OneTime, Source={StaticResource commands}}">
<dxb:PopupControlContainerInfo>
<dxe:ColorEdit EditValue="{Binding EditValue, ElementName=biFormatTabColor, Mode=TwoWay}" ShowDefaultColorButton="False" ShowNoColorButton="True" ShowBorder="False" />
</dxb:PopupControlContainerInfo>
</Custom:BarButtonColorEditItem>
<dxb:BarButtonItem x:Name="biReviewProtectSheet" Command="{Binding ReviewProtectSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormatCellLocked" Command="{Binding FormatCellLocked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatCells" Command="{Binding FormatCells, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biEditingAutoSumCommandGroup" Command="{Binding EditingAutoSumCommandGroup, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertSum" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertAverage" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertCountNumbers" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertMax" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertMin" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biFunctionsInsertSum" Command="{Binding FunctionsInsertSum, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFunctionsInsertAverage" Command="{Binding FunctionsInsertAverage, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFunctionsInsertCountNumbers" Command="{Binding FunctionsInsertCountNumbers, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFunctionsInsertMax" Command="{Binding FunctionsInsertMax, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFunctionsInsertMin" Command="{Binding FunctionsInsertMin, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biEditingFillCommandGroup" Command="{Binding EditingFillCommandGroup, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biEditingFillDown" />
<dxb:BarButtonItemLink BarItemName="biEditingFillRight" />
<dxb:BarButtonItemLink BarItemName="biEditingFillUp" />
<dxb:BarButtonItemLink BarItemName="biEditingFillLeft" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biEditingFillDown" Command="{Binding EditingFillDown, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingFillRight" Command="{Binding EditingFillRight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingFillUp" Command="{Binding EditingFillUp, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingFillLeft" Command="{Binding EditingFillLeft, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biFormatClearCommandGroup" Command="{Binding FormatClearCommandGroup, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFormatClearAll" />
<dxb:BarButtonItemLink BarItemName="biFormatClearFormats" />
<dxb:BarButtonItemLink BarItemName="biFormatClearContents" />
<dxb:BarButtonItemLink BarItemName="biFormatClearComments" />
<dxb:BarButtonItemLink BarItemName="biFormatClearHyperlinks" />
<dxb:BarButtonItemLink BarItemName="biFormatRemoveHyperlinks" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biFormatClearAll" Command="{Binding FormatClearAll, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatClearFormats" Command="{Binding FormatClearFormats, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatClearContents" Command="{Binding FormatClearContents, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatClearComments" Command="{Binding FormatClearComments, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatClearHyperlinks" Command="{Binding FormatClearHyperlinks, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormatRemoveHyperlinks" Command="{Binding FormatRemoveHyperlinks, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biEditingSortAndFilterCommandGroup" Command="{Binding EditingSortAndFilterCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biEditingDataSortAscending" />
<dxb:BarButtonItemLink BarItemName="biEditingDataSortDescending" />
<dxb:BarCheckItemLink BarItemName="biDataFilterToggle" />
<dxb:BarButtonItemLink BarItemName="biDataFilterClear" />
<dxb:BarButtonItemLink BarItemName="biDataFilterReApply" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biEditingDataSortAscending" Command="{Binding DataSortAscending, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingDataSortDescending" Command="{Binding DataSortDescending, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biDataFilterToggle" Command="{Binding DataFilterToggle, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataFilterClear" Command="{Binding DataFilterClear, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataFilterReApply" Command="{Binding DataFilterReApply, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biEditingFindAndSelectCommandGroup" Command="{Binding EditingFindAndSelectCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biEditingFind" />
<dxb:BarButtonItemLink BarItemName="biEditingReplace" />
<dxb:BarButtonItemLink BarItemName="biEditingSelectFormulas" />
<dxb:BarButtonItemLink BarItemName="biEditingSelectComments" />
<dxb:BarButtonItemLink BarItemName="biEditingSelectConditionalFormatting" />
<dxb:BarButtonItemLink BarItemName="biEditingSelectConstants" />
<dxb:BarButtonItemLink BarItemName="biEditingSelectDataValidation" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biEditingFind" Command="{Binding EditingFind, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingReplace" Command="{Binding EditingReplace, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingSelectFormulas" Command="{Binding EditingSelectFormulas, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingSelectComments" Command="{Binding EditingSelectComments, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingSelectConditionalFormatting" Command="{Binding EditingSelectConditionalFormatting, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingSelectConstants" Command="{Binding EditingSelectConstants, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biEditingSelectDataValidation" Command="{Binding EditingSelectDataValidation, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biInsertPivotTable" Command="{Binding InsertPivotTable, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biInsertTable" Command="{Binding InsertTable, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biInsertPicture" Command="{Binding InsertPicture, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSplitButtonItem x:Name="biInsertChartColumnCommandGroup" ActAsDropDown="True" Command="{Binding InsertChartColumnCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="4" ItemDescriptionHorizontalAlignment="Left" IsItemCaptionVisible="False" IsItemDescriptionVisible="False" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpInsertChartColumn2DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartColumn2DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartColumnClustered2D" Command="{Binding InsertChartColumnClustered2D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartColumnStacked2D" Command="{Binding InsertChartColumnStacked2D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartColumnPercentStacked2D" Command="{Binding InsertChartColumnPercentStacked2D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartColumn3DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartColumn3DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartColumnClustered3D" Command="{Binding InsertChartColumnClustered3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartColumnStacked3D" Command="{Binding InsertChartColumnStacked3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartColumnPercentStacked3D" Command="{Binding InsertChartColumnPercentStacked3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartColumn3D" Command="{Binding InsertChartColumn3D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartCylinderCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartCylinderCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartCylinderClustered" Command="{Binding InsertChartCylinderClustered, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartCylinderStacked" Command="{Binding InsertChartCylinderStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartCylinderPercentStacked" Command="{Binding InsertChartCylinderPercentStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartCylinder" Command="{Binding InsertChartCylinder, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartConeCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartConeCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartConeClustered" Command="{Binding InsertChartConeClustered, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartConeStacked" Command="{Binding InsertChartConeStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartConePercentStacked" Command="{Binding InsertChartConePercentStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartCone" Command="{Binding InsertChartCone, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartPyramidCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartPyramidCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartPyramidClustered" Command="{Binding InsertChartPyramidClustered, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPyramidStacked" Command="{Binding InsertChartPyramidStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPyramidPercentStacked" Command="{Binding InsertChartPyramidPercentStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPyramid" Command="{Binding InsertChartPyramid, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biInsertChartLineCommandGroup" ActAsDropDown="True" Command="{Binding InsertChartLineCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="3" ItemDescriptionHorizontalAlignment="Left" IsItemCaptionVisible="False" IsItemDescriptionVisible="False" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpInsertChartLine2DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartLine2DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartLine" Command="{Binding InsertChartLine, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartStackedLine" Command="{Binding InsertChartStackedLine, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPercentStackedLine" Command="{Binding InsertChartPercentStackedLine, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartLineWithMarkers" Command="{Binding InsertChartLineWithMarkers, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartStackedLineWithMarkers" Command="{Binding InsertChartStackedLineWithMarkers, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPercentStackedLineWithMarkers" Command="{Binding InsertChartPercentStackedLineWithMarkers, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartLine3DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartLine3DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartLine3D" Command="{Binding InsertChartLine3D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biInsertChartPieCommandGroup" ActAsDropDown="True" Command="{Binding InsertChartPieCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="2" ItemDescriptionHorizontalAlignment="Left" IsItemCaptionVisible="False" IsItemDescriptionVisible="False" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpInsertChartPie2DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartPie2DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartPie2D" Command="{Binding InsertChartPie2D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPieExploded2D" Command="{Binding InsertChartPieExploded2D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartPie3DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartPie3DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartPie3D" Command="{Binding InsertChartPie3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPieExploded3D" Command="{Binding InsertChartPieExploded3D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartDoughnut2DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartDoughnut2DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartDoughnut2D" Command="{Binding InsertChartDoughnut2D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartDoughnutExploded2D" Command="{Binding InsertChartDoughnutExploded2D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biInsertChartBarCommandGroup" ActAsDropDown="True" Command="{Binding InsertChartBarCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="3" ItemDescriptionHorizontalAlignment="Left" IsItemCaptionVisible="False" IsItemDescriptionVisible="False" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpInsertChartBar2DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartBar2DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartBarClustered2D" Command="{Binding InsertChartBarClustered2D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartBarStacked2D" Command="{Binding InsertChartBarStacked2D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartBarPercentStacked2D" Command="{Binding InsertChartBarPercentStacked2D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartBar3DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartBar3DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartBarClustered3D" Command="{Binding InsertChartBarClustered3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartBarStacked3D" Command="{Binding InsertChartBarStacked3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartBarPercentStacked3D" Command="{Binding InsertChartBarPercentStacked3D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartHorizontalCylinderCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartHorizontalCylinderCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartHorizontalCylinderClustered" Command="{Binding InsertChartHorizontalCylinderClustered, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartHorizontalCylinderStacked" Command="{Binding InsertChartHorizontalCylinderStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartHorizontalCylinderPercentStacked" Command="{Binding InsertChartHorizontalCylinderPercentStacked, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartHorizontalConeCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartHorizontalConeCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartHorizontalConeClustered" Command="{Binding InsertChartHorizontalConeClustered, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartHorizontalConeStacked" Command="{Binding InsertChartHorizontalConeStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartHorizontalConePercentStacked" Command="{Binding InsertChartHorizontalConePercentStacked, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartHorizontalPyramidCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartHorizontalPyramidCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartHorizontalPyramidClustered" Command="{Binding InsertChartHorizontalPyramidClustered, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartHorizontalPyramidStacked" Command="{Binding InsertChartHorizontalPyramidStacked, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartHorizontalPyramidPercentStacked" Command="{Binding InsertChartHorizontalPyramidPercentStacked, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biInsertChartAreaCommandGroup" ActAsDropDown="True" Command="{Binding InsertChartAreaCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="3" ItemDescriptionHorizontalAlignment="Left" IsItemCaptionVisible="False" IsItemDescriptionVisible="False" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpInsertChartArea2DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartArea2DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartArea" Command="{Binding InsertChartArea, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartStackedArea" Command="{Binding InsertChartStackedArea, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPercentStackedArea" Command="{Binding InsertChartPercentStackedArea, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartArea3DCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartArea3DCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartArea3D" Command="{Binding InsertChartArea3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartStackedArea3D" Command="{Binding InsertChartStackedArea3D, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartPercentStackedArea3D" Command="{Binding InsertChartPercentStackedArea3D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biInsertChartScatterCommandGroup" ActAsDropDown="True" Command="{Binding InsertChartScatterCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="3" ItemDescriptionHorizontalAlignment="Left" IsItemCaptionVisible="False" IsItemDescriptionVisible="False" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpInsertChartScatterCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartScatterCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartScatterMarkers" Command="{Binding InsertChartScatterMarkers, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartScatterSmoothLinesAndMarkers" Command="{Binding InsertChartScatterSmoothLinesAndMarkers, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartScatterSmoothLines" Command="{Binding InsertChartScatterSmoothLines, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartScatterLinesAndMarkers" Command="{Binding InsertChartScatterLinesAndMarkers, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartScatterLines" Command="{Binding InsertChartScatterLines, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartBubbleCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartBubbleCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartBubble" Command="{Binding InsertChartBubble, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartBubble3D" Command="{Binding InsertChartBubble3D, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biInsertChartOtherCommandGroup" ActAsDropDown="True" Command="{Binding InsertChartOtherCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="4" ItemDescriptionHorizontalAlignment="Left" IsItemCaptionVisible="False" IsItemDescriptionVisible="False" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpInsertChartStockCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartStockCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartStockHighLowClose" Command="{Binding InsertChartStockHighLowClose, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartStockOpenHighLowClose" Command="{Binding InsertChartStockOpenHighLowClose, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartStockVolumeHighLowClose" Command="{Binding InsertChartStockVolumeHighLowClose, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartStockVolumeOpenHighLowClose" Command="{Binding InsertChartStockVolumeOpenHighLowClose, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
<dxb:GalleryItemGroup x:Name="grpInsertChartRadarCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_InsertChartRadarCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="True">
<dxb:GalleryItem x:Name="biInsertChartRadar" Command="{Binding InsertChartRadar, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartRadarWithMarkers" Command="{Binding InsertChartRadarWithMarkers, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biInsertChartRadarFilled" Command="{Binding InsertChartRadarFilled, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarButtonItem x:Name="biInsertHyperlink" Command="{Binding InsertHyperlink, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biInsertSymbol" Command="{Binding InsertSymbol, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biPageSetupMarginsCommandGroup" Command="{Binding PageSetupMarginsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarCheckItemLink BarItemName="biPageSetupMarginsNormal" />
<dxb:BarCheckItemLink BarItemName="biPageSetupMarginsWide" />
<dxb:BarCheckItemLink BarItemName="biPageSetupMarginsNarrow" />
<dxb:BarButtonItemLink BarItemName="biPageSetupCustomMargins" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarCheckItem x:Name="biPageSetupMarginsNormal" ContentTemplate="{Binding MarginBarItemContentTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" Command="{Binding PageSetupMarginsNormal, Mode=OneTime, Source={StaticResource commands}}" GlyphSize="Large" />
<dxb:BarCheckItem x:Name="biPageSetupMarginsWide" ContentTemplate="{Binding MarginBarItemContentTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" Command="{Binding PageSetupMarginsWide, Mode=OneTime, Source={StaticResource commands}}" GlyphSize="Large" />
<dxb:BarCheckItem x:Name="biPageSetupMarginsNarrow" ContentTemplate="{Binding MarginBarItemContentTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" Command="{Binding PageSetupMarginsNarrow, Mode=OneTime, Source={StaticResource commands}}" GlyphSize="Large" />
<dxb:BarButtonItem x:Name="biPageSetupCustomMargins" Command="{Binding PageSetupCustomMargins, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biPageSetupOrientationCommandGroup" Command="{Binding PageSetupOrientationCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarCheckItemLink BarItemName="biPageSetupOrientationPortrait" />
<dxb:BarCheckItemLink BarItemName="biPageSetupOrientationLandscape" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarCheckItem x:Name="biPageSetupOrientationPortrait" Command="{Binding PageSetupOrientationPortrait, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biPageSetupOrientationLandscape" Command="{Binding PageSetupOrientationLandscape, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biPageSetupPaperKindCommandGroup" Command="{Binding PageSetupPaperKindCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<Custom:PaperKindBarListItemLink BarItemName="biPageLayoutSizeList" />
<dxb:BarButtonItemLink BarItemName="biPageSetupMorePaperSizes" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxsps:PaperKindBarListItem x:Name="biPageLayoutSizeList" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxb:BarButtonItem x:Name="biPageSetupMorePaperSizes" Command="{Binding PageSetupMorePaperSizes, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biPageSetupPrintAreaCommandGroup" Command="{Binding PageSetupPrintAreaCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biPageSetupSetPrintArea" />
<dxb:BarButtonItemLink BarItemName="biPageSetupClearPrintArea" />
<dxb:BarButtonItemLink BarItemName="biPageSetupAddPrintArea" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biPageSetupSetPrintArea" Command="{Binding PageSetupSetPrintArea, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biPageSetupClearPrintArea" Command="{Binding PageSetupClearPrintArea, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biPageSetupAddPrintArea" Command="{Binding PageSetupAddPrintArea, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biPageSetupPrintTitles" Command="{Binding PageSetupPrintTitles, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarStaticItem x:Name="biViewShowGridlines" ContentTemplate="{Binding CheckEditTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" Command="{Binding ViewShowGridlines, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarStaticItem x:Name="biViewShowHeadings" ContentTemplate="{Binding CheckEditTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" Command="{Binding ViewShowHeadings, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarStaticItem x:Name="biPageSetupPrintGridlines" ContentTemplate="{Binding CheckEditTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" Command="{Binding PageSetupPrintGridlines, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarStaticItem x:Name="biPageSetupPrintHeadings" ContentTemplate="{Binding CheckEditTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" Command="{Binding PageSetupPrintHeadings, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biPageLayoutArrangeBringForwardCommandGroup" Command="{Binding ArrangeBringForwardCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biArrangeBringForward" />
<dxb:BarButtonItemLink BarItemName="biArrangeBringToFront" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biArrangeBringForward" Command="{Binding ArrangeBringForward, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biArrangeBringToFront" Command="{Binding ArrangeBringToFront, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biPageLayoutArrangeSendBackwardCommandGroup" Command="{Binding ArrangeSendBackwardCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biArrangeSendBackward" />
<dxb:BarButtonItemLink BarItemName="biArrangeSendToBack" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biArrangeSendBackward" Command="{Binding ArrangeSendBackward, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biArrangeSendToBack" Command="{Binding ArrangeSendToBack, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biFunctionsAutoSumCommandGroup" Command="{Binding FunctionsAutoSumCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertSum" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertAverage" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertCountNumbers" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertMax" />
<dxb:BarButtonItemLink BarItemName="biFunctionsInsertMin" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxsps:InsertFinancialFunctionsBarSubItem x:Name="biFunctionsFinancialCommandGroup" Command="{Binding FunctionsFinancialCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertLogicalFunctionsBarSubItem x:Name="biFunctionsLogicalCommandGroup" Command="{Binding FunctionsLogicalCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertTextFunctionsBarSubItem x:Name="biFunctionsTextCommandGroup" Command="{Binding FunctionsTextCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertDateAndTimeFunctionsBarSubItem x:Name="biFunctionsDateAndTimeCommandGroup" Command="{Binding FunctionsDateAndTimeCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertLookupAndReferenceFunctionsBarSubItem x:Name="biFunctionsLookupAndReferenceCommandGroup" Command="{Binding FunctionsLookupAndReferenceCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertMathAndTrigonometryFunctionsBarSubItem x:Name="biFunctionsMathAndTrigonometryCommandGroup" Command="{Binding FunctionsMathAndTrigonometryCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertStatisticalFunctionsBarSubItem x:Name="biFunctionsStatisticalCommandGroup" Command="{Binding FunctionsStatisticalCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertEngineeringFunctionsBarSubItem x:Name="biFunctionsEngineeringCommandGroup" Command="{Binding FunctionsEngineeringCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertInformationFunctionsBarSubItem x:Name="biFunctionsInformationCommandGroup" Command="{Binding FunctionsInformationCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertCompatibilityFunctionsBarSubItem x:Name="biFunctionsCompatibilityCommandGroup" Command="{Binding FunctionsCompatibilityCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxsps:InsertWebFunctionsBarSubItem x:Name="biFunctionsWebCommandGroup" Command="{Binding FunctionsWebCommandGroup, Mode=OneTime, Source={StaticResource commands}}" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxb:BarButtonItem x:Name="biFormulasShowNameManager" Command="{Binding FormulasShowNameManager, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormulasDefineNameCommand" Command="{Binding FormulasDefineNameCommand, Mode=OneTime, Source={StaticResource commands}}" />
<dxsps:InsertDefinedNamesBarSubItem x:Name="biFormulasInsertDefinedNameCommandGroup" Command="{Binding FormulasInsertDefinedNameCommandGroup, Mode=OneTime, Source={StaticResource commands}}" GlyphSize="Large" SpreadsheetControl="{Binding ElementName=spreadsheetControl}" />
<dxb:BarButtonItem x:Name="biFormulasCreateDefinedNamesFromSelection" Command="{Binding FormulasCreateDefinedNamesFromSelection, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biViewShowFormulas" Command="{Binding ViewShowFormulas, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biFormulasCalculationOptionsCommandGroup" Command="{Binding FormulasCalculationOptionsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarCheckItemLink BarItemName="biFormulasCalculationModeAutomatic" />
<dxb:BarCheckItemLink BarItemName="biFormulasCalculationModeManual" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarCheckItem x:Name="biFormulasCalculationModeAutomatic" Command="{Binding FormulasCalculationModeAutomatic, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarCheckItem x:Name="biFormulasCalculationModeManual" Command="{Binding FormulasCalculationModeManual, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biFormulasCalculateNow" Command="{Binding FormulasCalculateNow, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText" />
<dxb:BarButtonItem x:Name="biFormulasCalculateSheet" Command="{Binding FormulasCalculateSheet, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText" />
<dxb:BarButtonItem x:Name="biDataSortAscending" Command="{Binding DataSortAscending, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataSortDescending" Command="{Binding DataSortDescending, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biDataValidationCommandGroup" Command="{Binding DataValidationCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biDataValidation" />
<dxb:BarButtonItemLink BarItemName="biDataCircleValidationInvalidData" />
<dxb:BarButtonItemLink BarItemName="biDataClearValidationCircles" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biDataValidation" Command="{Binding DataValidation, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataCircleValidationInvalidData" Command="{Binding DataCircleValidationInvalidData, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataClearValidationCircles" Command="{Binding DataClearValidationCircles, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biDataOutlineGroupCommandGroup" Command="{Binding DataOutlineGroupCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biDataGroupOutline" />
<dxb:BarButtonItemLink BarItemName="biDataAutoOutline" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biDataGroupOutline" Command="{Binding DataGroupOutline, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataAutoOutline" Command="{Binding DataAutoOutline, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biDataOutlineUngroupCommandGroup" Command="{Binding DataOutlineUngroupCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biDataUngroupOutline" />
<dxb:BarButtonItemLink BarItemName="biDataClearOutline" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biDataUngroupOutline" Command="{Binding DataUngroupOutline, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataClearOutline" Command="{Binding DataClearOutline, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataSubtotal" Command="{Binding DataSubtotal, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataShowDetail" Command="{Binding DataShowDetail, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biDataHideDetail" Command="{Binding DataHideDetail, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biReviewInsertComment" Command="{Binding ReviewInsertComment, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biReviewEditComment" Command="{Binding ReviewEditComment, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biReviewDeleteComment" Command="{Binding ReviewDeleteComment, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biReviewShowHideComment" Command="{Binding ReviewShowHideComment, Mode=OneTime, Source={StaticResource commands}}" RibbonStyle="SmallWithText" />
<dxb:BarButtonItem x:Name="biReviewUnprotectSheet" Command="{Binding ReviewUnprotectSheet, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biReviewProtectWorkbook" Command="{Binding ReviewProtectWorkbook, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biReviewUnprotectWorkbook" Command="{Binding ReviewUnprotectWorkbook, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biReviewShowProtectedRangeManager" Command="{Binding ReviewShowProtectedRangeManager, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biViewZoom" Command="{Binding ViewZoom, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biViewZoomOut" Command="{Binding ViewZoomOut, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biViewZoomIn" Command="{Binding ViewZoomIn, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biViewZoom100Percent" Command="{Binding ViewZoom100Percent, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarSubItem x:Name="biViewFreezePanesCommandGroup" Command="{Binding ViewFreezePanesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarButtonItemLink BarItemName="biViewFreezePanes" />
<dxb:BarButtonItemLink BarItemName="biViewUnfreezePanes" />
<dxb:BarButtonItemLink BarItemName="biViewFreezeTopRow" />
<dxb:BarButtonItemLink BarItemName="biViewFreezeFirstColumn" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarButtonItem x:Name="biViewFreezePanes" Command="{Binding ViewFreezePanes, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biViewUnfreezePanes" Command="{Binding ViewUnfreezePanes, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biViewFreezeTopRow" Command="{Binding ViewFreezeTopRow, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biViewFreezeFirstColumn" Command="{Binding ViewFreezeFirstColumn, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biChartSwitchRowColumn" Command="{Binding ChartSwitchRowColumn, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:BarButtonItem x:Name="biChartSelectData" Command="{Binding ChartSelectData, Mode=OneTime, Source={StaticResource commands}}" />
<dxr:RibbonGalleryBarItem x:Name="biGalleryChartLayout">
<dxr:RibbonGalleryBarItem.Gallery>
<dxb:Gallery ColCount="6" GroupTemplate="{Binding ChartLayoutGalleryGroupTemplate, Mode=OneTime, Source={StaticResource defaultBarItemTemplates}}" GroupsSource="{Binding ChartLayoutGalleryGroups, ElementName=spreadsheetControl}" IsItemGlyphVisible="True" IsGroupCaptionVisible="False" IsItemDescriptionVisible="False" MinColCount="3" />
</dxr:RibbonGalleryBarItem.Gallery>
</dxr:RibbonGalleryBarItem>
<dxb:BarSplitButtonItem x:Name="biChartTitleCommandGroup" ActAsDropDown="True" Command="{Binding ChartTitleCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartTitleCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartTitleCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartTitleNone" Command="{Binding ChartTitleNone, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartTitleCenteredOverlay" Command="{Binding ChartTitleCenteredOverlay, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartTitleAbove" Command="{Binding ChartTitleAbove, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSubItem x:Name="biChartAxisTitlesCommandGroup" Command="{Binding ChartAxisTitlesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarSplitButtonItemLink BarItemName="biChartPrimaryHorizontalAxisTitleCommandGroup" />
<dxb:BarSplitButtonItemLink BarItemName="biChartPrimaryVerticalAxisTitleCommandGroup" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarSplitButtonItem x:Name="biChartPrimaryHorizontalAxisTitleCommandGroup" ActAsDropDown="True" Command="{Binding ChartPrimaryHorizontalAxisTitleCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartPrimaryHorizontalAxisTitleCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartPrimaryHorizontalAxisTitleCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisTitleNone" Command="{Binding ChartPrimaryHorizontalAxisTitleNone, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisTitleBelow" Command="{Binding ChartPrimaryHorizontalAxisTitleBelow, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biChartPrimaryVerticalAxisTitleCommandGroup" ActAsDropDown="True" Command="{Binding ChartPrimaryVerticalAxisTitleCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartPrimaryVerticalAxisTitleCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartPrimaryVerticalAxisTitleCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisTitleNone" Command="{Binding ChartPrimaryVerticalAxisTitleNone, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisTitleRotated" Command="{Binding ChartPrimaryVerticalAxisTitleRotated, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisTitleVertical" Command="{Binding ChartPrimaryVerticalAxisTitleVertical, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisTitleHorizontal" Command="{Binding ChartPrimaryVerticalAxisTitleHorizontal, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biChartLegendCommandGroup" ActAsDropDown="True" Command="{Binding ChartLegendCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartLegendCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartLegendCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartLegendNone" Command="{Binding ChartLegendNone, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartLegendAtRight" Command="{Binding ChartLegendAtRight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartLegendAtTop" Command="{Binding ChartLegendAtTop, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartLegendAtLeft" Command="{Binding ChartLegendAtLeft, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartLegendAtBottom" Command="{Binding ChartLegendAtBottom, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartLegendOverlayAtRight" Command="{Binding ChartLegendOverlayAtRight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartLegendOverlayAtLeft" Command="{Binding ChartLegendOverlayAtLeft, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biChartDataLabelsCommandGroup" ActAsDropDown="True" Command="{Binding ChartDataLabelsCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartDataLabelsCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartDataLabelsCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartDataLabelsNone" Command="{Binding ChartDataLabelsNone, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsDefault" Command="{Binding ChartDataLabelsDefault, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsCenter" Command="{Binding ChartDataLabelsCenter, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsInsideEnd" Command="{Binding ChartDataLabelsInsideEnd, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsInsideBase" Command="{Binding ChartDataLabelsInsideBase, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsOutsideEnd" Command="{Binding ChartDataLabelsOutsideEnd, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsBestFit" Command="{Binding ChartDataLabelsBestFit, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsLeft" Command="{Binding ChartDataLabelsLeft, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsRight" Command="{Binding ChartDataLabelsRight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsAbove" Command="{Binding ChartDataLabelsAbove, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartDataLabelsBelow" Command="{Binding ChartDataLabelsBelow, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSubItem x:Name="biChartAxesCommandGroup" Command="{Binding ChartAxesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarSplitButtonItemLink BarItemName="biChartPrimaryHorizontalAxisCommandGroup" />
<dxb:BarSplitButtonItemLink BarItemName="biChartPrimaryVerticalAxisCommandGroup" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarSplitButtonItem x:Name="biChartPrimaryHorizontalAxisCommandGroup" ActAsDropDown="True" Command="{Binding ChartPrimaryHorizontalAxisCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartPrimaryHorizontalAxisCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartPrimaryHorizontalAxisCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartHidePrimaryHorizontalAxis" Command="{Binding ChartHidePrimaryHorizontalAxis, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisLeftToRight" Command="{Binding ChartPrimaryHorizontalAxisLeftToRight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisRightToLeft" Command="{Binding ChartPrimaryHorizontalAxisRightToLeft, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisHideLabels" Command="{Binding ChartPrimaryHorizontalAxisHideLabels, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisDefault" Command="{Binding ChartPrimaryHorizontalAxisDefault, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisScaleLogarithm" Command="{Binding ChartPrimaryHorizontalAxisScaleLogarithm, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisScaleThousands" Command="{Binding ChartPrimaryHorizontalAxisScaleThousands, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisScaleMillions" Command="{Binding ChartPrimaryHorizontalAxisScaleMillions, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalAxisScaleBillions" Command="{Binding ChartPrimaryHorizontalAxisScaleBillions, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biChartPrimaryVerticalAxisCommandGroup" ActAsDropDown="True" Command="{Binding ChartPrimaryVerticalAxisCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartPrimaryVerticalAxisCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartPrimaryVerticalAxisCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartHidePrimaryVerticalAxis" Command="{Binding ChartHidePrimaryVerticalAxis, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisLeftToRight" Command="{Binding ChartPrimaryVerticalAxisLeftToRight, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisRightToLeft" Command="{Binding ChartPrimaryVerticalAxisRightToLeft, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisHideLabels" Command="{Binding ChartPrimaryVerticalAxisHideLabels, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisDefault" Command="{Binding ChartPrimaryVerticalAxisDefault, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisScaleLogarithm" Command="{Binding ChartPrimaryVerticalAxisScaleLogarithm, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisScaleThousands" Command="{Binding ChartPrimaryVerticalAxisScaleThousands, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisScaleMillions" Command="{Binding ChartPrimaryVerticalAxisScaleMillions, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalAxisScaleBillions" Command="{Binding ChartPrimaryVerticalAxisScaleBillions, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSubItem x:Name="biChartGridlinesCommandGroup" Command="{Binding ChartGridlinesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxb:BarSubItem.ItemLinks>
<dxb:BarSplitButtonItemLink BarItemName="biChartPrimaryHorizontalGridlinesCommandGroup" />
<dxb:BarSplitButtonItemLink BarItemName="biChartPrimaryVerticalGridlinesCommandGroup" />
</dxb:BarSubItem.ItemLinks>
</dxb:BarSubItem>
<dxb:BarSplitButtonItem x:Name="biChartPrimaryHorizontalGridlinesCommandGroup" ActAsDropDown="True" Command="{Binding ChartPrimaryHorizontalGridlinesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartPrimaryHorizontalGridlinesCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartPrimaryHorizontalGridlinesCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalGridlinesNone" Command="{Binding ChartPrimaryHorizontalGridlinesNone, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalGridlinesMajor" Command="{Binding ChartPrimaryHorizontalGridlinesMajor, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalGridlinesMinor" Command="{Binding ChartPrimaryHorizontalGridlinesMinor, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryHorizontalGridlinesMajorAndMinor" Command="{Binding ChartPrimaryHorizontalGridlinesMajorAndMinor, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>
</dxr:GalleryDropDownPopupMenu>
</dxb:BarSplitButtonItem>
<dxb:BarSplitButtonItem x:Name="biChartPrimaryVerticalGridlinesCommandGroup" ActAsDropDown="True" Command="{Binding ChartPrimaryVerticalGridlinesCommandGroup, Mode=OneTime, Source={StaticResource commands}}">
<dxr:GalleryDropDownPopupMenu>
<dxr:GalleryDropDownPopupMenu.Gallery>
<dxb:Gallery AllowFilter="False" ColCount="1" ItemDescriptionHorizontalAlignment="Left" SizeMode="None">
<dxb:GalleryItemGroup x:Name="grpChartPrimaryVerticalGridlinesCommandGroup" Caption="{Binding ConverterParameter=MenuCmd_ChartPrimaryVerticalGridlinesCommandGroup, Converter={StaticResource stringIdConverter}, Mode=OneTime, Source={StaticResource stringIdConverter}}" IsCaptionVisible="False">
<dxb:GalleryItem x:Name="biChartPrimaryVerticalGridlinesNone" Command="{Binding ChartPrimaryVerticalGridlinesNone, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalGridlinesMajor" Command="{Binding ChartPrimaryVerticalGridlinesMajor, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalGridlinesMinor" Command="{Binding ChartPrimaryVerticalGridlinesMinor, Mode=OneTime, Source={StaticResource commands}}" />
<dxb:GalleryItem x:Name="biChartPrimaryVerticalGridlinesMajorAndMinor" Command="{Binding ChartPrimaryVerticalGridlinesMajorAndMinor, Mode=OneTime, Source={StaticResource commands}}" />
</dxb:GalleryItemGroup>
</dxb:Gallery>
</dxr:GalleryDropDownPopupMenu.Gallery>