-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathConfigView.xaml
More file actions
705 lines (690 loc) · 52.5 KB
/
ConfigView.xaml
File metadata and controls
705 lines (690 loc) · 52.5 KB
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
<Window x:Class="BouyomiPlugin.ConfigView"
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:BouyomiPlugin"
mc:Ignorable="d"
d:DesignHeight="1500"
d:DataContext="{d:DesignInstance local:ConfigViewModel, IsDesignTimeCreatable=True}"
Title="棒読みちゃん連携プラグイン" Width="439" Background="#F0F0F0">
<Window.Resources>
<local:AndConverter x:Key="AndConverter"/>
</Window.Resources>
<Grid>
<CheckBox x:Name="checkBox" Content="棒読みちゃんにコメントを読んでもらう" IsChecked="{Binding IsEnabled}" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
<TabControl HorizontalAlignment="Stretch" Margin="5,30,5,5" VerticalAlignment="Stretch">
<TabItem Header="基本設定">
<Grid Background="#FFE5E5E5" IsEnabled="{Binding IsChecked, ElementName=checkBox}">
<Label x:Name="label" Content="棒読みちゃんの場所" HorizontalAlignment="Left" Margin="10,87,0,0" VerticalAlignment="Top"/>
<TextBox x:Name="textBox" HorizontalAlignment="Left" Height="23" Margin="10,118,0,0" TextWrapping="NoWrap" Text="{Binding ExeLocation}" VerticalAlignment="Top" Width="325"/>
<Button x:Name="button" Content="選択" Command="{Binding ShowFilePickerCommand}" HorizontalAlignment="Left" Margin="340,118,0,0" VerticalAlignment="Top" Width="37"/>
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="10,146,0,0" TextWrapping="Wrap" VerticalAlignment="Top"><Run Text="棒読みちゃんの実行ファイルを指定すると棒読みちゃんを自動的に起動します。"/></TextBlock>
<CheckBox x:Name="checkBox1" Content="コテハンに敬称を付ける" IsChecked="{Binding IsAppendNickTitle}" HorizontalAlignment="Left" Margin="182,25,0,0" VerticalAlignment="Top"/>
<TextBox x:Name="textBox1" IsEnabled="{Binding IsChecked, ElementName=checkBox1}" HorizontalAlignment="Left" Height="23" Margin="215,45,0,0" TextWrapping="Wrap" Text="{Binding NickTitle}" VerticalAlignment="Top" Width="120"/>
<CheckBox Content="184コメントも読ませる" IsChecked="{Binding Want184Read}" HorizontalAlignment="Left" Margin="182,87,0,0" VerticalAlignment="Top"/>
<CheckBox Content="コメビュ起動時に棒読みちゃんも起動する" IsChecked="{Binding IsExecBouyomiChanAtBoot}" HorizontalAlignment="Left" Margin="10,175,0,0" VerticalAlignment="Top"/>
<CheckBox Content="コメビュ終了時に棒読みちゃんも終了させる(自動起動した場合のみ)" IsChecked="{Binding IsKillBouyomiChan}" HorizontalAlignment="Left" Margin="10,195,0,0" VerticalAlignment="Top"/>
<CheckBox x:Name="voiceTypeSpecifiedCheckBox" Content="読み上げ音声を指定する" IsChecked="{Binding IsVoiceTypeSpecfied}" HorizontalAlignment="Left" Margin="10,224,0,0" VerticalAlignment="Top"/>
<Grid IsEnabled="{Binding IsChecked, ElementName=voiceTypeSpecifiedCheckBox}" Margin="15,250,10,10">
<Label Content="声質" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
<ComboBox SelectedIndex="{Binding VoiceTypeSelectedIndex}" HorizontalAlignment="Left" Margin="49,12,0,0" VerticalAlignment="Top" Width="120">
<ComboBoxItem Content="デフォルト"/>
<ComboBoxItem Content="女性1"/>
<ComboBoxItem Content="女性2"/>
<ComboBoxItem Content="男性1"/>
<ComboBoxItem Content="男性2"/>
<ComboBoxItem Content="中性"/>
<ComboBoxItem Content="ロボット"/>
<ComboBoxItem Content="機械1"/>
<ComboBoxItem Content="機械2"/>
<ComboBoxItem Content="SAPI5#1"/>
<ComboBoxItem Content="SAPI5#2"/>
<ComboBoxItem Content="SAPI5#3"/>
<ComboBoxItem Content="SAPI5#4"/>
<ComboBoxItem Content="SAPI5#5"/>
<ComboBoxItem Content="SAPI5#6"/>
<ComboBoxItem Content="SAPI5#7"/>
<ComboBoxItem Content="SAPI5#8"/>
<ComboBoxItem Content="SAPI5#9"/>
</ComboBox>
<Label Content="音量" HorizontalAlignment="Left" Margin="10,35,0,0" VerticalAlignment="Top"/>
<Slider x:Name="voiceVolumeSlider" Minimum="-1" Maximum="100" Value="{Binding VoiceVolume}" TickFrequency="1" IsSnapToTickEnabled="True" HorizontalAlignment="Left" Margin="49,39,0,0" VerticalAlignment="Top" Width="120"/>
<TextBlock Text="{Binding Value, ElementName=voiceVolumeSlider}" HorizontalAlignment="Left" Margin="174,40,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="40"/>
<Label Content="速度" HorizontalAlignment="Left" Margin="10,61,0,0" VerticalAlignment="Top"/>
<Slider x:Name="voiceSpeedSlider" Minimum="50" Maximum="300" Value="{Binding VoiceSpeed}" TickFrequency="1" IsSnapToTickEnabled="True" HorizontalAlignment="Left" Margin="49,65,0,0" VerticalAlignment="Top" Width="120"/>
<TextBlock Text="{Binding Value, ElementName=voiceSpeedSlider}" HorizontalAlignment="Left" Margin="174,66,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="40"/>
<Label Content="音程" HorizontalAlignment="Left" Margin="10,87,0,0" VerticalAlignment="Top"/>
<Slider x:Name="voiceToneSlider" Minimum="50" Maximum="200" Value="{Binding VoiceTone}" TickFrequency="1" IsSnapToTickEnabled="True" HorizontalAlignment="Left" Margin="49,91,0,0" VerticalAlignment="Top" Width="120"/>
<TextBlock Text="{Binding Value, ElementName=voiceToneSlider}" HorizontalAlignment="Left" Margin="174,92,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="40"/>
</Grid>
</Grid>
</TabItem>
<TabItem Header="読んでもらうメッセージ">
<ScrollViewer Background="#FFE5E5E5">
<Grid HorizontalAlignment="Stretch" Height="Auto" VerticalAlignment="Stretch" Width="Auto">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<Border Grid.Row="0" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Grid.Row="1" Grid.Column="0" Text="YouTube Live" Margin="5" />
</Border>
<Border Grid.Row="0" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Grid.Row="1" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsYouTubeLiveConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsYouTubeLiveDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckYouTubeLiveComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsYouTubeLiveComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckYouTubeLiveComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsYouTubeLiveCommentNickname}" Content="コテハン" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckYouTubeLiveComment}" Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsYouTubeLiveCommentStamp}" Content="スタンプ" />
</Grid>
<Grid Grid.Row="3">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckYouTubeLiveSuperchat" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsYouTubeLiveSuperchat}" Content="super chat" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckYouTubeLiveSuperchat}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsYouTubeLiveSuperchatNickname}" Content="コテハン" />
</Grid>
<Grid Grid.Row="4">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckYouTubeLiveMembership" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsYouTubeLiveMembership}" Content="メンバー登録" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckYouTubeLiveMembership}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsYouTubeLiveMembershipNickname}" Content="コテハン" />
</Grid>
</Grid>
</Border>
<Border Grid.Row="1" Grid.Column="0" BorderBrush="Black" BorderThickness="0 0 0 1">
<TextBlock Text="OPENREC" Margin="5" />
</Border>
<Border Grid.Row="1" Grid.Column="1" BorderBrush="Black" BorderThickness="0 0 0 1">
<Grid Grid.Row="0" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsOpenrecConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsOpenrecDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckOpenrecComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsOpenrecComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckOpenrecComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsOpenrecCommentNickname}" Content="コテハン" />
</Grid>
</Grid>
</Border>
<Border Grid.Row="2" Grid.Column="0" BorderBrush="Black" BorderThickness="0 0 0 1">
<TextBlock Text="Twitch" Margin="5" />
</Border>
<Border Grid.Row="2" Grid.Column="1" BorderBrush="Black" BorderThickness="0 0 0 1">
<Grid Grid.Row="0" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsTwitchConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsTwitchDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckTwitchComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsTwitchComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckTwitchComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsTwitchCommentNickname}" Content="コテハン" />
<CheckBox x:Name="CheckTwitchCommentEmoteId" IsEnabled="{Binding IsChecked, ElementName=CheckTwitchComment}" Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsTwitchCommentEmoteId}" Content="エモートID" />
<TextBox x:Name="TwitchMaxEmotes" Grid.Row="3" Grid.Column="2" MaxLength="3" Text="{Binding TwitchMaxEmotes}" PreviewTextInput="TextBox_PreviewTextInput" TextChanged="TextBox_TextChanged">
<TextBox.IsEnabled>
<MultiBinding Converter="{StaticResource AndConverter}">
<Binding Path="IsChecked" ElementName="CheckTwitchComment"/>
<Binding Path="IsChecked" ElementName="CheckTwitchCommentEmoteId"/>
</MultiBinding>
</TextBox.IsEnabled>
</TextBox>
<Label Content="個まで" Grid.Row="3" Grid.Column="3"/>
<CheckBox Grid.Row="4" Grid.Column="2" Grid.ColumnSpan="4" IsChecked="{Binding IsTwitchSkipSameEmote}" Content="連続する同一エモートを省略">
<CheckBox.IsEnabled>
<MultiBinding Converter="{StaticResource AndConverter}">
<Binding Path="IsChecked" ElementName="CheckTwitchComment"/>
<Binding Path="IsChecked" ElementName="CheckTwitchCommentEmoteId"/>
</MultiBinding>
</CheckBox.IsEnabled>
</CheckBox>
</Grid>
</Grid>
</Border>
<Border Grid.Row="3" Grid.Column="0" BorderBrush="Black" BorderThickness="0 0 0 1">
<TextBlock Text="ニコ生" Margin="5" />
</Border>
<Border Grid.Row="3" Grid.Column="1" BorderBrush="Black" BorderThickness="0 0 0 1">
<Grid Grid.Row="0" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsNicoConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsNicoDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckNicoComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsNicoComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckNicoComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsNicoCommentNickname}" Content="コテハン" />
</Grid>
<Grid Grid.Row="3">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckNicoItem" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsNicoItem}" Content="アイテム" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckNicoItem}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsNicoItemNickname}" Content="コテハン" />
</Grid>
<CheckBox Grid.Row="4" IsChecked="{Binding IsNicoAd}" Content="広告" />
<CheckBox Grid.Row="5" IsChecked="{Binding IsNicoSpi}" Content="リクエスト" />
<CheckBox Grid.Row="6" IsChecked="{Binding IsNicoEmotion}" Content="エモーション" />
</Grid>
</Border>
<Border Grid.Row="4" Grid.Column="0" BorderBrush="Black" BorderThickness="0 0 0 1">
<TextBlock Text="Twicas" Margin="5" />
</Border>
<Border Grid.Row="4" Grid.Column="1" BorderBrush="Black" BorderThickness="0 0 0 1">
<Grid Grid.Row="0" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsTwicasConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsTwicasDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckTwicasComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsTwicasComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckTwicasComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsTwicasCommentNickname}" Content="コテハン" />
</Grid>
<Grid Grid.Row="3">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckTwicasItem" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsTwicasItem}" Content="アイテム" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckTwicasItem}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsTwicasItemNickname}" Content="コテハン" />
</Grid>
</Grid>
</Border>
<Border Grid.Row="5" Grid.Column="0" BorderBrush="Black" BorderThickness="0 0 0 1">
<TextBlock Text="LINELIVE" Margin="5" />
</Border>
<Border Grid.Row="5" Grid.Column="1" BorderBrush="Black" BorderThickness="0 0 0 1">
<Grid Grid.Row="0" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsLineLiveConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsLineLiveDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckLineLiveComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsLineLiveComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckLineLiveComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsLineLiveCommentNickname}" Content="コテハン" />
</Grid>
</Grid>
</Border>
<Border Grid.Row="6" Grid.Column="0" BorderBrush="Black" BorderThickness="0 0 0 1">
<TextBlock Text="ふわっち" Margin="5" />
</Border>
<Border Grid.Row="6" Grid.Column="1" BorderBrush="Black" BorderThickness="0 0 0 1">
<Grid Grid.Row="0" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsWhowatchConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsWhowatchDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckWhowatchComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsWhowatchComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckWhowatchComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsWhowatchCommentNickname}" Content="コテハン" />
</Grid>
<Grid Grid.Row="3">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckWhowatchItem" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsWhowatchItem}" Content="アイテム" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckWhowatchItem}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsWhowatchItemNickname}" Content="コテハン" />
</Grid>
</Grid>
</Border>
<Border Grid.Row="7" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Text="Mirrativ" Margin="5" />
</Border>
<Border Grid.Row="7" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsMirrativConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsMirrativDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckMirrativComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsMirrativComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMirrativComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMirrativCommentNickname}" Content="コテハン" />
</Grid>
<CheckBox Grid.Row="3" IsChecked="{Binding IsMirrativJoinRoom}" Content="入室" />
<CheckBox Grid.Row="4" IsChecked="{Binding IsMirrativItem}" Content="アイテム" />
</Grid>
</Border>
<Border Grid.Row="8" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Text="Periscope" Margin="5" />
</Border>
<Border Grid.Row="8" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsPeriscopeConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsPeriscopeDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckPeriscopeComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsPeriscopeComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckPeriscopeComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsPeriscopeCommentNickname}" Content="コテハン" />
</Grid>
<CheckBox Grid.Row="3" IsChecked="{Binding IsPeriscopeJoin}" Content="入室" />
<CheckBox Grid.Row="4" IsChecked="{Binding IsPeriscopeLeave}" Content="退室" />
</Grid>
</Border>
<Border Grid.Row="9" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Text="Mixer" Margin="5" />
</Border>
<Border Grid.Row="9" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsMixerConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsMixerDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckMixerComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsMixerComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMixerComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMixerCommentNickname}" Content="コテハン" />
</Grid>
<CheckBox Grid.Row="3" IsChecked="{Binding IsMixerJoin}" Content="入室" />
<CheckBox Grid.Row="4" IsChecked="{Binding IsMixerLeave}" Content="退室" />
</Grid>
</Border>
<Border Grid.Row="10" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Text="Mildom" Margin="5" />
</Border>
<Border Grid.Row="10" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<CheckBox Grid.Row="0" IsChecked="{Binding IsMildomConnect}" Content="接続" />
<CheckBox Grid.Row="1" IsChecked="{Binding IsMildomDisconnect}" Content="切断" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckMildomComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsMildomComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMildomComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMildomCommentNickname}" Content="コテハン" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMildomComment}" Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMildomCommentStampId}" Content="スタンプID" />
</Grid>
<Grid Grid.Row="3">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckMildomGift" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsMildomComment}" Content="ギフト" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMildomGift}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMildomGiftNickname}" Content="コテハン" />
</Grid>
<CheckBox Grid.Row="4" IsChecked="{Binding IsMildomJoin}" Content="入室" />
<CheckBox Grid.Row="5" IsChecked="{Binding IsMildomLeave}" Content="退室" />
</Grid>
</Border>
<Border Grid.Row="11" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Text="ShowRoom" Margin="5" />
</Border>
<Border Grid.Row="11" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<!--<CheckBox Grid.Row="0" IsChecked="{Binding IsShowRoomConnect}" Content="接続" />-->
<!--<CheckBox Grid.Row="1" IsChecked="{Binding IsShowRoomDisconnect}" Content="切断" />-->
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckShowRoomComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsShowRoomComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckShowRoomComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsShowRoomCommentNickname}" Content="コテハン" />
</Grid>
<!--<CheckBox Grid.Row="3" IsChecked="{Binding IsShowRoomJoin}" Content="入室" />-->
<!--<CheckBox Grid.Row="4" IsChecked="{Binding IsShowRoomLeave}" Content="退室" />-->
</Grid>
</Border>
<Border Grid.Row="12" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Text="BigoLive" Margin="5" />
</Border>
<Border Grid.Row="12" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<!--<CheckBox Grid.Row="0" IsChecked="{Binding IsBigoLiveConnect}" Content="接続" />-->
<!--<CheckBox Grid.Row="1" IsChecked="{Binding IsBigoLiveDisconnect}" Content="切断" />-->
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckBigoLiveComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsBigoLiveComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckBigoLiveComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsBigoLiveCommentNickname}" Content="コテハン" />
</Grid>
<!--<CheckBox Grid.Row="3" IsChecked="{Binding IsBigoLiveJoin}" Content="入室" />-->
<!--<CheckBox Grid.Row="4" IsChecked="{Binding IsBigoLiveLeave}" Content="退室" />-->
</Grid>
</Border>
<Border Grid.Row="13" Grid.Column="0" BorderBrush="Black" BorderThickness="0 0 0 1">
<TextBlock Text="ミクチャ" Margin="5" />
</Border>
<Border Grid.Row="13" Grid.Column="1" BorderBrush="Black" BorderThickness="0 0 0 1">
<Grid Grid.Row="0" Grid.Column="1" Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckMixchComment" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsMixchComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMixchComment}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMixchCommentNickname}" Content="コテハン" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMixchComment}" Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMixchCommentOnlyFirst}" Content="最初のコメントだけ読む" />
<CheckBox x:Name="CheckMixchItem" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsMixchItem}" Content="アイテム" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckMixchItem}" Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsMixchItemNickname}" Content="コテハン" />
<CheckBox x:Name="CheckMixchSystem" Grid.Row="5" Grid.Column="0" Grid.ColumnSpan="4" IsChecked="{Binding IsMixchSystem}" Content="システムメッセージ" />
</Grid>
</Border>
<Border Grid.Row="14" Grid.Column="0" BorderBrush="Black" BorderThickness="0,0,0,1">
<TextBlock Text="その他" Margin="5" />
</Border>
<Border Grid.Row="14" Grid.Column="1" BorderBrush="Black" BorderThickness="0,0,0,1">
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="CheckOthers" Grid.Row="0" Grid.ColumnSpan="4" IsChecked="{Binding IsReadComment}" Content="コメント" />
<CheckBox IsEnabled="{Binding IsChecked, ElementName=CheckOthers}" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" IsChecked="{Binding IsReadHandleName}" Content="コテハン" />
</Grid>
</Border>
</Grid>
</ScrollViewer>
</TabItem>
</TabControl>
</Grid>
</Window>