質問編集履歴

2

削除された内容の復元を行いました

2021/03/08 03:05

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- カラーを設置したいです
1
+ 1つのHBox左上に、もう一方を右上に設置したい
test CHANGED
@@ -1,3 +1,291 @@
1
+ ### 前提・実現したいこと
2
+
3
+ javafxにてCanvasを使った絵を書くプログラムを作っています。
4
+
5
+ 位置の指定はしているのですが、指定なりなんなりしても重なってしまいます。
6
+
7
+ 2つの中身の要素をまとめて1つのHBoxに入れたりもしたのですが改善しませんでした。
8
+
9
+ 載せているプログラムは上記の操作をする前のものです。
10
+
11
+ 色を変えるボタンのHBoxをCanvasの左上に、線の太さを変えるHBoxをCanvasの右上に配置したいです。
12
+
13
+ ■■な機能を実装中に以下のエラーメッセージが発生しました。
14
+
15
+ ### 発生している問題・エラーメッセージ
16
+
1
- ****```
17
+ ```
18
+
2
-
19
+ 2つのHBoxが重なってしまう
20
+
21
+ ```
22
+
23
+ ### 該当のソースコード
24
+
25
+ ```javafx
26
+
27
+ import javafx.application.Application;
28
+
29
+ import javafx.event.ActionEvent;
30
+
31
+ import javafx.event.EventHandler;
32
+
33
+ import javafx.geometry.Pos;
34
+
35
+ import javafx.scene.Group;
36
+
37
+ import javafx.scene.Scene;
38
+
39
+ import javafx.scene.canvas.Canvas;
40
+
41
+ import javafx.scene.canvas.GraphicsContext;
42
+
43
+ import javafx.scene.control.Button;
44
+
45
+ import javafx.scene.control.TextField;
46
+
47
+ import javafx.scene.input.MouseEvent;
48
+
49
+ import javafx.scene.layout.FlowPane;
50
+
51
+ import javafx.scene.layout.HBox;
52
+
53
+ import javafx.scene.paint.Color;
54
+
55
+ import javafx.stage.Stage;
56
+
57
+ public class Draw extends Application {
58
+
59
+ public static void main(String[] args) {
60
+
61
+ launch();
62
+
63
+ }
64
+
65
+ GraphicsContext Graphic;
66
+
67
+ public void start(Stage myStage) {
68
+
69
+ myStage.setTitle("お絵かきアプリ");
70
+
71
+ myStage.setWidth(500);
72
+
73
+ myStage.setHeight(500);
74
+
75
+ Canvas cn = new Canvas(1500, 1200);
76
+
77
+ cn.setOnMousePressed(event -> mousePressed(event));
78
+
79
+ cn.setOnMouseDragged(event -> mouseDragged(event));
80
+
81
+
82
+
83
+ Graphic = cn.getGraphicsContext2D();
84
+
85
+ Button Black = new Button("黒"); //色を変えるボタンを設置
86
+
87
+ Button Brown = new Button("茶");
88
+
89
+ Button Red = new Button("赤");
90
+
91
+ Button Blue = new Button("青");
92
+
93
+ Button Sky = new Button("水色");
94
+
95
+ Button Yellow = new Button("黄");
96
+
97
+ Button Green = new Button("緑");
98
+
99
+ Button Pink = new Button("ピンク");
100
+
101
+ Button Orange = new Button("オレンジ");
102
+
3
- コ### ~~__**__~~__~~__~~ヘディグのテキスト~~__~~__~~__**__~~
103
+ Button clear = new Button("キャをリセッ");
104
+
105
+ //線の太さを変えるテキストフィールドとボタン
106
+
107
+ TextField num = new TextField();
108
+
109
+ num.setPrefWidth(100);
110
+
111
+ num.setText("変更したい太さ");
112
+
113
+ Button cha = new Button("変更");
114
+
115
+ cha.setOnAction(new EventHandler<ActionEvent>() {
116
+
117
+ public void handle(ActionEvent Event) {
118
+
119
+ if(num != null) {
120
+
121
+ int n = Integer.parseInt(num.getText());
122
+
123
+ Graphic.setLineWidth(n);
124
+
125
+ Graphic.beginPath();
126
+
127
+ }
128
+
129
+ }
130
+
131
+ });
132
+
133
+ Black.setOnAction(new EventHandler<ActionEvent>() {
134
+
135
+ public void handle(ActionEvent Event) {
136
+
137
+ Graphic.setStroke(Color . BLACK );
138
+
139
+ Graphic.beginPath();
140
+
141
+ }
142
+
143
+ });
144
+
145
+ Brown.setOnAction(new EventHandler<ActionEvent>() {
146
+
147
+ public void handle(ActionEvent Event) {
148
+
149
+ Graphic.setStroke(Color . BROWN );
150
+
151
+ Graphic.beginPath();
152
+
153
+ }
154
+
155
+ });
156
+
157
+ Red.setOnAction(new EventHandler<ActionEvent>() {
158
+
159
+ public void handle(ActionEvent Event1) {
160
+
161
+ Graphic.setStroke(Color . RED );
162
+
163
+ Graphic.beginPath();
164
+
165
+ }
166
+
167
+ });
168
+
169
+ Blue.setOnAction(new EventHandler<ActionEvent>() {
170
+
171
+ public void handle(ActionEvent Event2) {
172
+
173
+ Graphic.setStroke(Color . BLUE );
174
+
175
+ Graphic.beginPath();
176
+
177
+ }
178
+
179
+ });
180
+
181
+ Sky.setOnAction(new EventHandler<ActionEvent>() {
182
+
183
+ public void handle(ActionEvent Event2) {
184
+
185
+ Graphic.setStroke(Color . SKYBLUE );
186
+
187
+ Graphic.beginPath();
188
+
189
+ }
190
+
191
+ });
192
+
193
+ Yellow.setOnAction(new EventHandler<ActionEvent>() {
194
+
195
+ public void handle(ActionEvent Event3) {
196
+
197
+ Graphic.setStroke(Color . YELLOW );
198
+
199
+ Graphic.beginPath();
200
+
201
+ }
202
+
203
+ });
204
+
205
+ Green.setOnAction(new EventHandler<ActionEvent>() {
206
+
207
+ public void handle(ActionEvent Event4) {
208
+
209
+ Graphic.setStroke(Color . GREEN );
210
+
211
+ Graphic.beginPath();
212
+
213
+ }
214
+
215
+ });
216
+
217
+ Pink.setOnAction(new EventHandler<ActionEvent>() {
218
+
219
+ public void handle(ActionEvent Event5) {
220
+
221
+ Graphic.setStroke(Color . PINK );
222
+
223
+ Graphic.beginPath();
224
+
225
+ }
226
+
227
+ });
228
+
229
+ Orange.setOnAction(new EventHandler<ActionEvent>() {
230
+
231
+ public void handle(ActionEvent Event6) {
232
+
233
+ Graphic.setStroke(Color . ORANGE );
234
+
235
+ Graphic.beginPath();
236
+
237
+ }
238
+
239
+ });
240
+
241
+ clear.setOnAction(new EventHandler<ActionEvent>() {
242
+
243
+ public void handle(ActionEvent Event7) {
244
+
245
+ Graphic.clearRect(0 , 0 , cn.getWidth(), cn.getHeight());
246
+
247
+ Graphic.beginPath();
248
+
249
+ }
250
+
251
+ });
252
+
253
+ HBox hb = new HBox(cn , Black , Brown ,Red , Blue , Sky , Yellow , Green , Pink , Orange , clear );
254
+
255
+ HBox hb2 = new HBox(num , cha);
256
+
257
+ hb.setAlignment(Pos.TOP_LEFT);
258
+
259
+ hb2.setAlignment(Pos.TOP_RIGHT);
260
+
261
+ myStage.setScene(new Scene(new Group(cn , hb , hb2)));
262
+
263
+ myStage.show();
264
+
265
+ }
266
+
267
+ void mousePressed(MouseEvent Event2) {
268
+
269
+ Graphic.moveTo(Event2.getX(), Event2.getY());
270
+
271
+ }
272
+
273
+ void mouseDragged(MouseEvent Event3) {
274
+
275
+ Graphic.lineTo(Event3.getX(), Event3.getY());
276
+
277
+ Graphic.stroke();
278
+
279
+ }
280
+
281
+ }
282
+
283
+ ```
284
+
285
+ ### 試したこと
286
+
287
+ 2つのHBoxの中身を1つのHBoxにまとめた
288
+
289
+ ### 補足情報(FW/ツールのバージョンなど)
290
+
291
+ 実行環境はjava8です

1

2021/03/08 03:05

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- 1つのHBox左上に、もう一方を右上に設置したい
1
+ カラーを設置したいです
test CHANGED
@@ -1,561 +1,3 @@
1
- ### 前提・実現したいこと
1
+ ****```
2
2
 
3
-
4
-
5
-
6
-
7
- javafxにてCanvasを使った絵を書くプログラムを作っています。
8
-
9
- 位置の指定はしているのですが、指定なりなんなりしても重なってしまいます。
10
-
11
- 2つの中身の要素をまとめて1つのHBoxに入れたりもしたのですが改善しませんでした。
12
-
13
- 載せているプログラムは上記の操作をする前のものです。
14
-
15
-
16
-
17
- 色を変えるボタンのHBoxをCanvasの左上に、線の太さを変えるHBoxをCanvasの右上に配置したいです。
18
-
19
- ■■な機能を実装中に以下のエラーメッセージが発生しました。
20
-
21
-
22
-
23
- ### 発生している問題・エラーメッセージ
24
-
25
-
26
-
27
- ```
28
-
29
- 2つのHBoxが重なってしまう
30
-
31
- ```
32
-
33
-
34
-
35
- ### 該当のソースコード
36
-
37
-
38
-
39
- ```javafx
40
-
41
- import javafx.application.Application;
42
-
43
- import javafx.event.ActionEvent;
44
-
45
- import javafx.event.EventHandler;
46
-
47
- import javafx.geometry.Pos;
48
-
49
- import javafx.scene.Group;
50
-
51
- import javafx.scene.Scene;
52
-
53
- import javafx.scene.canvas.Canvas;
54
-
55
- import javafx.scene.canvas.GraphicsContext;
56
-
57
- import javafx.scene.control.Button;
58
-
59
- import javafx.scene.control.TextField;
60
-
61
- import javafx.scene.input.MouseEvent;
62
-
63
- import javafx.scene.layout.FlowPane;
64
-
65
- import javafx.scene.layout.HBox;
66
-
67
- import javafx.scene.paint.Color;
68
-
69
- import javafx.stage.Stage;
70
-
71
-
72
-
73
-
74
-
75
- public class Draw extends Application {
76
-
77
-
78
-
79
-
80
-
81
- public static void main(String[] args) {
82
-
83
-
84
-
85
- launch();
86
-
87
-
88
-
89
- }
90
-
91
-
92
-
93
-
94
-
95
- GraphicsContext Graphic;
96
-
97
-
98
-
99
- public void start(Stage myStage) {
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
- myStage.setTitle("お絵かきアプリ");
108
-
109
-
110
-
111
- myStage.setWidth(500);
112
-
113
- myStage.setHeight(500);
114
-
115
-
116
-
117
- Canvas cn = new Canvas(1500, 1200);
118
-
119
- cn.setOnMousePressed(event -> mousePressed(event));
120
-
121
- cn.setOnMouseDragged(event -> mouseDragged(event));
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
- Graphic = cn.getGraphicsContext2D();
132
-
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
- Button Black = new Button("黒"); //色を変えるボタンを設置
142
-
143
- Button Brown = new Button("茶");
144
-
145
- Button Red = new Button("赤");
146
-
147
- Button Blue = new Button("青");
148
-
149
- Button Sky = new Button("水色");
150
-
151
- Button Yellow = new Button("黄");
152
-
153
- Button Green = new Button("緑");
154
-
155
- Button Pink = new Button("ピンク");
156
-
157
- Button Orange = new Button("オレンジ");
158
-
159
- Button clear = new Button("ャンバをリセッ");
3
+ コ### ~~__**__~~__~~__~~ヘディングのテキスト~~__~~__~~__**__~~
160
-
161
-
162
-
163
-
164
-
165
- //線の太さを変えるテキストフィールドとボタン
166
-
167
-
168
-
169
- TextField num = new TextField();
170
-
171
- num.setPrefWidth(100);
172
-
173
- num.setText("変更したい太さ");
174
-
175
-
176
-
177
- Button cha = new Button("変更");
178
-
179
-
180
-
181
- cha.setOnAction(new EventHandler<ActionEvent>() {
182
-
183
-
184
-
185
- public void handle(ActionEvent Event) {
186
-
187
-
188
-
189
- if(num != null) {
190
-
191
- int n = Integer.parseInt(num.getText());
192
-
193
- Graphic.setLineWidth(n);
194
-
195
- Graphic.beginPath();
196
-
197
- }
198
-
199
-
200
-
201
- }
202
-
203
-
204
-
205
- });
206
-
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
- Black.setOnAction(new EventHandler<ActionEvent>() {
218
-
219
-
220
-
221
- public void handle(ActionEvent Event) {
222
-
223
-
224
-
225
- Graphic.setStroke(Color . BLACK );
226
-
227
- Graphic.beginPath();
228
-
229
-
230
-
231
-
232
-
233
- }
234
-
235
-
236
-
237
- });
238
-
239
-
240
-
241
- Brown.setOnAction(new EventHandler<ActionEvent>() {
242
-
243
-
244
-
245
- public void handle(ActionEvent Event) {
246
-
247
-
248
-
249
- Graphic.setStroke(Color . BROWN );
250
-
251
- Graphic.beginPath();
252
-
253
-
254
-
255
-
256
-
257
- }
258
-
259
-
260
-
261
- });
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
- Red.setOnAction(new EventHandler<ActionEvent>() {
270
-
271
-
272
-
273
-
274
-
275
- public void handle(ActionEvent Event1) {
276
-
277
-
278
-
279
- Graphic.setStroke(Color . RED );
280
-
281
- Graphic.beginPath();
282
-
283
-
284
-
285
- }
286
-
287
-
288
-
289
- });
290
-
291
-
292
-
293
-
294
-
295
- Blue.setOnAction(new EventHandler<ActionEvent>() {
296
-
297
-
298
-
299
-
300
-
301
- public void handle(ActionEvent Event2) {
302
-
303
-
304
-
305
- Graphic.setStroke(Color . BLUE );
306
-
307
- Graphic.beginPath();
308
-
309
-
310
-
311
- }
312
-
313
-
314
-
315
- });
316
-
317
-
318
-
319
- Sky.setOnAction(new EventHandler<ActionEvent>() {
320
-
321
-
322
-
323
-
324
-
325
- public void handle(ActionEvent Event2) {
326
-
327
-
328
-
329
- Graphic.setStroke(Color . SKYBLUE );
330
-
331
- Graphic.beginPath();
332
-
333
-
334
-
335
- }
336
-
337
-
338
-
339
- });
340
-
341
-
342
-
343
-
344
-
345
- Yellow.setOnAction(new EventHandler<ActionEvent>() {
346
-
347
-
348
-
349
-
350
-
351
- public void handle(ActionEvent Event3) {
352
-
353
-
354
-
355
- Graphic.setStroke(Color . YELLOW );
356
-
357
- Graphic.beginPath();
358
-
359
-
360
-
361
- }
362
-
363
-
364
-
365
- });
366
-
367
-
368
-
369
-
370
-
371
-
372
-
373
- Green.setOnAction(new EventHandler<ActionEvent>() {
374
-
375
-
376
-
377
-
378
-
379
- public void handle(ActionEvent Event4) {
380
-
381
-
382
-
383
- Graphic.setStroke(Color . GREEN );
384
-
385
- Graphic.beginPath();
386
-
387
-
388
-
389
- }
390
-
391
-
392
-
393
- });
394
-
395
-
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
- Pink.setOnAction(new EventHandler<ActionEvent>() {
404
-
405
-
406
-
407
-
408
-
409
- public void handle(ActionEvent Event5) {
410
-
411
-
412
-
413
- Graphic.setStroke(Color . PINK );
414
-
415
- Graphic.beginPath();
416
-
417
-
418
-
419
- }
420
-
421
-
422
-
423
- });
424
-
425
-
426
-
427
-
428
-
429
-
430
-
431
- Orange.setOnAction(new EventHandler<ActionEvent>() {
432
-
433
-
434
-
435
-
436
-
437
- public void handle(ActionEvent Event6) {
438
-
439
-
440
-
441
- Graphic.setStroke(Color . ORANGE );
442
-
443
- Graphic.beginPath();
444
-
445
-
446
-
447
- }
448
-
449
-
450
-
451
- });
452
-
453
-
454
-
455
-
456
-
457
-
458
-
459
-
460
-
461
- clear.setOnAction(new EventHandler<ActionEvent>() {
462
-
463
-
464
-
465
-
466
-
467
- public void handle(ActionEvent Event7) {
468
-
469
-
470
-
471
-
472
-
473
- Graphic.clearRect(0 , 0 , cn.getWidth(), cn.getHeight());
474
-
475
- Graphic.beginPath();
476
-
477
-
478
-
479
-
480
-
481
-
482
-
483
- }
484
-
485
-
486
-
487
- });
488
-
489
-
490
-
491
-
492
-
493
-
494
-
495
-
496
-
497
- HBox hb = new HBox(cn , Black , Brown ,Red , Blue , Sky , Yellow , Green , Pink , Orange , clear );
498
-
499
- HBox hb2 = new HBox(num , cha);
500
-
501
- hb.setAlignment(Pos.TOP_LEFT);
502
-
503
- hb2.setAlignment(Pos.TOP_RIGHT);
504
-
505
- myStage.setScene(new Scene(new Group(cn , hb , hb2)));
506
-
507
-
508
-
509
-
510
-
511
- myStage.show();
512
-
513
-
514
-
515
- }
516
-
517
-
518
-
519
- void mousePressed(MouseEvent Event2) {
520
-
521
- Graphic.moveTo(Event2.getX(), Event2.getY());
522
-
523
-
524
-
525
- }
526
-
527
-
528
-
529
- void mouseDragged(MouseEvent Event3) {
530
-
531
- Graphic.lineTo(Event3.getX(), Event3.getY());
532
-
533
- Graphic.stroke();
534
-
535
-
536
-
537
- }
538
-
539
-
540
-
541
-
542
-
543
- }
544
-
545
-
546
-
547
- ```
548
-
549
-
550
-
551
- ### 試したこと
552
-
553
-
554
-
555
- 2つのHBoxの中身を1つのHBoxにまとめた
556
-
557
-
558
-
559
- ### 補足情報(FW/ツールのバージョンなど)
560
-
561
- 実行環境はjava8です