フィルターのクリア

External graphics in GUI

4 ビュー (過去 30 日間)
Jakob Sørensen
Jakob Sørensen 2012 年 3 月 8 日
Hey there,
I'm creating a GUI, and I was wondering if it was possible to add external graphics (static) without adding an axes for every simple object I wan't to add. More specific I would like to add some horizontal and vertical lines, to split the GUI into different "cells", that way (hopefully) making it a bit more intuitive. Is this possible somehow?

採用された回答

Jacob Halbrooks
Jacob Halbrooks 2012 年 3 月 8 日
Line annotations can be added directly to a figure. For example, this code adds a couple of lines to divide a figure into 4 squares:
f=figure;
annotation('line', [0 1], [0.5 0.5]);
annotation('line', [0.5 0.5], [0 1]);
See the help for ANNOTATION to inspect the different types of annotations you can add.
You might also consider laying out your GUI with uipanels, which can have visible borders and can be a good way to contain graphics.
  1 件のコメント
Jakob Sørensen
Jakob Sørensen 2012 年 3 月 8 日
Awesome! Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeApp Building についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by