WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

uitoolbar und uitoggletool

 

Patti

Gast


Beiträge: ---
Anmeldedatum: ---
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 25.09.2012, 10:44     Titel: uitoolbar und uitoggletool
  Antworten mit Zitat      
Hallo,

habe ein kleines Problem mit der uitoolbar und uitoogletool in meiner gui.
Ich würde gerne mehrere uitoggletools erstellen, jedoch gibt mir matlab immer eine Fehlermeldung aus sobald ich ein zweites uitoggletool erstelle.
Mit nur einem klappt alles.

Fehlermeldung:
??? Error using ==> uitoggletool
Invalid property found.
Object Name : uitoggletool
Property Name : 'icon'.


Leider finde ich einfach nicht heraus warum.

Hier mal mein Code:
Code:

scrsz = get(0,'ScreenSize');

if scrsz(3)/(5/3)>scrsz(4)
    scrsz(3) = scrsz(4)*(5/3)-.1*scrsz(3);           % scrsz(3) verkleinern
    scrsz(4) = scrsz(4)-.1*scrsz(3);
else
    scrsz(4) = scrsz(3)/(5/3)-.1*scrsz(4);           % scrsz(4) verkleinern
    scrsz(3) = scrsz(3)-.1*scrsz(4);
end

grey95 = [242/255 242/255 242/255];

handles.main = figure(...
    'WindowStyle','normal',...
    'Position',[scrsz(1) scrsz(2) scrsz(3) scrsz(4)],...
    'MenuBar','none',...
    'Toolbar','none',...
    'Interruptible','on',...
    'NumberTitle','off',...
    'DockControls','off',...
    'Name','Test',...
    'Resize','on',...
    'HandleVisibility','on',...
    'Color',grey95,...
    'Tag','main');
movegui(handles.main,'center');

handles.toolbar = uitoolbar(handles.main);
[X,~,alpha] = imread(fullfile(matlabroot,'\toolbox\matlab\icons\tool_zoom_in.png'));
icon_zoom_in = double(X)/256/256;
icon_zoom_in(~alpha) = NaN;
handles.toolbar.icon.zoomin = uitoggletool(...
    handles.toolbar,...
    'CData',icon_zoom_in,...
    'TooltipString','Zoom In');

[X,~,alpha] = imread(fullfile(matlabroot,'\toolbox\matlab\icons\tool_zoom_out.png'));
icon_zoom_out = double(X)/256/256;
icon_zoom_out(~alpha) = NaN;
handles.toolbar.icon.zoomout = uitoggletool(...
    handles.toolbar,...
    'CData',icon_zoom_out,...
    'TooltipString','Zoom Out');
 


Hoffe ihr könnt mir nochmal helfen.

Besten Dank schon einmal im voraus.

Viele Grüße


denny
Supporter

Supporter



Beiträge: 3.853
Anmeldedatum: 14.02.08
Wohnort: Ulm
Version: R2012b
     Beitrag Verfasst am: 25.09.2012, 12:57     Titel:
  Antworten mit Zitat      
Hallo

weil du überschreibst das Handle von UITOOLBAR

Code:


handles.toolbar.main = uitoolbar(handles.main);
[X,~,alpha] = imread(fullfile(matlabroot,'\toolbox\matlab\icons\tool_zoom_in.png'));
icon_zoom_in = double(X)/256/256;
icon_zoom_in(~alpha) = NaN;
handles.toolbar.icon.zoomin = uitoggletool(...
    handles.toolbar.main,...
    'CData',icon_zoom_in,...
    'TooltipString','Zoom In');

[X,~,alpha] = imread(fullfile(matlabroot,'\toolbox\matlab\icons\tool_zoom_out.png'));
icon_zoom_out = double(X)/256/256;
icon_zoom_out(~alpha) = NaN;
handles.toolbar.icon.zoomout = uitoggletool(...
    handles.toolbar.main,...
    'CData',icon_zoom_out,...
    'TooltipString','Zoom Out');
 
Private Nachricht senden Benutzer-Profile anzeigen
 
Patti

Gast


Beiträge: ---
Anmeldedatum: ---
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 25.09.2012, 13:37     Titel:
  Antworten mit Zitat      
Besten Dank.

Wie dumm von mir!!!!

Viele Grüße
 
Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

Du kannst Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.
Du kannst Dateien in diesem Forum posten
Du kannst Dateien in diesem Forum herunterladen
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2025 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.