function build(this,Parent,X0,Y0)
%Function to construct container with Ok, Help and Cancel buttons.

% Author(s): Alec Stothert
% Revised:
% Copyright 1986-2004 The MathWorks, Inc. 
% $Revision: 1.1.6.1 $ $Date: 2004/08/01 00:08:00 $

UIColor = get(Parent,'Color');
%Set sizes
this.Width = 3*this.bWidth+2*this.bgap;
this.Height = this.bHeight;
%Make the container
this.hC = uicontainer('Parent',Parent,...
    'BackgroundColor',UIColor,...
    'units','characters');
%Add the three buttons
this.hOK = uicontrol('Parent',this.hC, ...
    'Units','characters', ...
    'Callback','', ...
    'Callback','',...
    'String','OK');
this.hCancel = uicontrol('Parent',this.hC, ...
    'Units','characters', ...
    'Callback','', ...
    'Callback','',...
    'String','Cancel');
this.hHelp = uicontrol('Parent',this.hC, ...
    'Units','characters', ...
    'Callback','', ...
    'String','Help');
