IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Interfaces Graphiques Discussion :

Ajouter du contenu dans une listbox


Sujet :

Interfaces Graphiques

  1. #1
    Membre extrêmement actif
    Avatar de mihaispr
    Inscrit en
    Décembre 2008
    Messages
    1 025
    Détails du profil
    Informations forums :
    Inscription : Décembre 2008
    Messages : 1 025
    Points : 858
    Points
    858
    Par défaut Ajouter du contenu dans une listbox
    J'ai une interface en Matlab.

    J'ai deux problemes a resoudre.

    1) Dans le premier listbox quand j'apuie le button fichier test.txt par exemple je veux son contenu enregistre dans le listbox. J'ai implemente l'open dialog pour la selection du fichier mai je ne sais pas comment enregistrer le contenu du fichier dans listbox1.

    La question est: Comment ajouter le contenu d'un fichier txt dans le listbox1


    La deuxieme question c'est de retenir en listbox la route complete des photos quand j'appuie le button load image pour enregistrer des images dans la componente axis1.

    Je veux dans listbox2 m'apparaitre toutes les photos enregistrer en axis 1 et la route: C:\Matlab71\work\poza1.jpg et si j'ajoute une autre photo Water.jpg dans axis 1 aussi sa route: C:\Matlab71\work\Water.jpg(dans le listbox2 ces deux routes).

    J'ai mis sur flyupload les fichiers .fig et .m .

    http://www.flyupload.com/?fid=306663403

  2. #2
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 52 884
    Points
    52 884
    Par défaut
    Citation Envoyé par mihaispr Voir le message
    Comment ajouter le contenu d'un fichier txt dans le listbox1
    Modifie le Callback pushbutton2_Callback comme ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    [fname,pname] = uigetfile('*.txt');
    X = textread(fullfile(pname,fname),'%s','delimiter','\n');
    set(handles.listbox1,'string',X)
    Citation Envoyé par mihaispr Voir le message
    La deuxieme question c'est de retenir en listbox la route complete des photos quand j'appuie le button load image pour enregistrer des images dans la componente axis1.
    Modifie le Callback pushbutton1_Callback comme ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    [filename,pathname] =uigetfile('*.jpg');
    img=imread(fullfile(pathname,filename),'jpg');
    imshow(img,'parent',handles.axes1);
     
    str = get(handles.listbox2,'string');
    str = cellstr(str);
    str{end+1} = fullfile(pathname,filename);
    set(handles.listbox2,'string',str);
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  3. #3
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 302
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 302
    Points : 52 884
    Points
    52 884
    Par défaut
    Voici ton fichier m nettoyé :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    function varargout = Interfata2(varargin)
    % INTERFATA2 M-file for Interfata2.fig
    %      INTERFATA2, by itself, creates a new INTERFATA2 or raises the existing
    %      singleton*.
    %
    %      H = INTERFATA2 returns the handle to a new INTERFATA2 or the handle to
    %      the existing singleton*.
    %
    %      INTERFATA2('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in INTERFATA2.M with the given input arguments.
    %
    %      INTERFATA2('Property','Value',...) creates a new INTERFATA2 or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before Interfata2_OpeningFunction gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to Interfata2_OpeningFcn via varargin.
    %
    %      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
    %      instance to run (singleton)".
    %
    % See also: GUIDE, GUIDATA, GUIHANDLES
     
    % Edit the above text to modify the response to help Interfata2
     
    % Last Modified by GUIDE v2.5 11-Mar-2009 16:02:10
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @Interfata2_OpeningFcn, ...
                       'gui_OutputFcn',  @Interfata2_OutputFcn, ...
                       'gui_LayoutFcn',  [] , ...
                       'gui_Callback',   []);
    if nargin && ischar(varargin{1})
        gui_State.gui_Callback = str2func(varargin{1});
    end
     
    if nargout
        [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
    else
        gui_mainfcn(gui_State, varargin{:});
    end
    % End initialization code - DO NOT EDIT
     
     
    % --- Executes just before Interfata2 is made visible.
    function Interfata2_OpeningFcn(hObject, eventdata, handles, varargin)
    % This function has no output args, see OutputFcn.
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    % varargin   command line arguments to Interfata2 (see VARARGIN)
     
    % Choose default command line output for Interfata2
    handles.output = hObject;
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes Interfata2 wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
     
     
    % --- Outputs from this function are returned to the command line.
    function varargout = Interfata2_OutputFcn(hObject, eventdata, handles) 
    % varargout  cell array for returning output args (see VARARGOUT);
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Get default command line output from handles structure
    varargout{1} = handles.output;
     
    % --- Executes on button press in pushbutton1.
    function pushbutton1_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    [filename,pathname] =uigetfile('*.jpg');
     
    if ~filename
        return
    end
     
    img=imread(fullfile(pathname,filename),'jpg');
    imshow(img,'parent',handles.axes1);
     
    str = get(handles.listbox2,'string');
    str = cellstr(str);
    str{end+1} = fullfile(pathname,filename);
    set(handles.listbox2,'string',str);
     
    % --- Executes during object creation, after setting all properties.
    function listbox1_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to listbox1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: listbox controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
     
    % --- Executes on button press in pushbutton2.
    function pushbutton2_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton2 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    [filename,pathname] = uigetfile('*.txt');
     
    if ~filename
        return
    end
     
    X = textread(fullfile(pathname,filename),'%s','delimiter','\n');
    set(handles.listbox1,'string',X)
     
    % --- Executes during object creation, after setting all properties.
    function listbox2_CreateFcn(hObject, eventdata, handles)
    % hObject    handle to listbox2 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    empty - handles not created until after all CreateFcns called
     
    % Hint: listbox controls usually have a white background on Windows.
    %       See ISPC and COMPUTER.
    if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
        set(hObject,'BackgroundColor','white');
    end
    J'ai aussi ajouté des tests si tu appuies sur le bouton Annuler quand tu utilises UIGETFILE
    Ingénieur indépendant en mécatronique - Conseil, conception et formation
    • Conception mécanique (Autodesk Fusion 360)
    • Impression 3D (Ultimaker)
    • Développement informatique (Python, MATLAB, C)
    • Programmation de microcontrôleur (Microchip PIC, ESP32, Raspberry Pi, Arduino…)

    « J'étais le meilleur ami que le vieux Jim avait au monde. Il fallait choisir. J'ai réfléchi un moment, puis je me suis dit : "Tant pis ! J'irai en enfer" » (Saint Huck)

  4. #4
    Membre extrêmement actif
    Avatar de mihaispr
    Inscrit en
    Décembre 2008
    Messages
    1 025
    Détails du profil
    Informations forums :
    Inscription : Décembre 2008
    Messages : 1 025
    Points : 858
    Points
    858
    Par défaut Merci ca marche!
    Merci boucoup ca marche!

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 3
    Dernier message: 25/01/2009, 17h32
  2. Ajouter du texte dans une ListBox sans sauter de ligne
    Par walid_kerkoub dans le forum Composants VCL
    Réponses: 2
    Dernier message: 03/03/2008, 15h42
  3. Comment exécuter un fichier contenu dans une ListBox ?
    Par bionicleman dans le forum Composants VCL
    Réponses: 7
    Dernier message: 12/01/2008, 02h53
  4. Réponses: 1
    Dernier message: 05/06/2007, 20h54
  5. [Question] Ajouter un item dans une ListBox
    Par Jihnn dans le forum VB 6 et antérieur
    Réponses: 9
    Dernier message: 29/12/2005, 19h38

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo