Client.LiteratureEntryView Class Reference

What shows the user data about literature entries, and allows them to edit that data. More...

List of all members.

Public Member Functions

 LiteratureEntryView (IAccessHandler accessHandler)
 Constructs a new LiteratureEntryView for creating a new instance of literature.
 LiteratureEntryView (IAccessHandler accessHandler, LiteratureInfo info)
 Constructs a new LiteratureEntryView Form displaying the information of an existing piece of literature.
 LiteratureEntryView (IAccessHandler accesshandler, int literature, int project, bool createReview)
 Constructs a new LiteratureEntryView Form to create or edit reviews and references.

Protected Member Functions

override void Dispose (bool disposing)
 Clean up any resources being used.

Properties

LiteratureInfo LiteratureInfo [get, set]
 Gets and sets the literature information contained in the LiteratureEntryView.

Private Member Functions

void btnClose_Click (object sender, EventArgs e)
 Close the window - saving and such is handled elsewhere.
void btnSave_Click (object sender, EventArgs e)
 Save the contents of the information section of the first tag.
bool Save ()
 Perform the actual information saving operations.
void InitializeInfopage ()
 Initializes the Info tabpage, by filling out the fields with the LiteratureInfo.
void InitializeTags ()
 Initializes the tag control by getting the tags from the accesshandler.
void tagContainer1_TagAdded (object sender, TagControls.TagContainerEventArgs e)
 Calls the accesshandler when a tag was added to the tagcontainer.
void tagContainer1_TagRemoved (object sender, TagControls.TagContainerEventArgs e)
 Calls the accesshandler when a tag was removed from the tagcontainer.
void InitializeReferences ()
 Initializes the reference tabpage.
void InitializeProjectsCombobox ()
 Initializes a list of all projects the user currently viewing, is involved in. The projects are only added to the list if they are not already referencing this literature.
void Project_Click (object sender, EventArgs ea)
 Handles clicks in the context menu containing projects. Creates suggestions or references.
void findProjectToolStripMenuItem_Click (object sender, EventArgs e)
 Opens a Reference filled with projects and lets the user select one to create a reference to.
void createReferenceButton_Click (object sender, EventArgs e)
 Shows the context menu containing projects.
void listView1_SelectedIndexChanged (object sender, EventArgs e)
void llblProjectLink_LinkClicked (object sender, LinkLabelLinkClickedEventArgs e)
void txtStatus_Leave (object sender, EventArgs e)
void tabControl1_Selecting (object sender, TabControlCancelEventArgs e)
void textBox1_Leave (object sender, EventArgs e)
void btnDelRef_Click (object sender, EventArgs e)
void CreateReviewButton_Click (object sender, EventArgs e)
void tabControl1_Deselecting (object sender, TabControlCancelEventArgs e)
void setDirty (object sender, EventArgs e)
 Mark the information section of the first tab dirty - called when changing any of the text boxes and the date-entry control.
void LiteratureEntryView_FormClosing (object sender, FormClosingEventArgs e)
void SelectReference (int project)
void dirtify (object sender, EventArgs e)
void tabControl2_Selecting (object sender, TabControlCancelEventArgs e)
void LiteratureEntryView_Shown (object sender, EventArgs e)
void InitializeComponent ()
 Required method for Designer support - do not modify the contents of this method with the code editor.

Private Attributes

LiteratureInfo info
 Information about the literature entry being edited.
IAccessHandler accessHandler
 The access handler used for saving and getting information used in the form.
bool newWindow = false
 Are we creating a new piece of literature?
bool createReview = false
 Are we creating a new review?
bool dirty = false
 True if the contents of the information section (first tab, minus TagContainer) has been changed.
System.ComponentModel.IContainer components = null
 Required designer variable.
System.Windows.Forms.Label label1
System.Windows.Forms.TextBox textBoxAuthors
System.Windows.Forms.Label label2
System.Windows.Forms.TextBox textBoxTitle
System.Windows.Forms.Label label3
System.Windows.Forms.Label label5
System.Windows.Forms.TextBox textBoxSource
System.Windows.Forms.Label label6
System.Windows.Forms.TextBox textBoxISBN
System.Windows.Forms.Label label7
System.Windows.Forms.TextBox textBoxSummary
System.Windows.Forms.Label label8
System.Windows.Forms.Label label9
System.Windows.Forms.ComboBox comboBoxType
System.Windows.Forms.TabControl tabControl1
System.Windows.Forms.TabPage tabInfo
System.Windows.Forms.TabPage tabComments
System.Windows.Forms.Button btnSave
System.Windows.Forms.Button btnClose
TagControls.TagContainer tagContainer1
System.Windows.Forms.TabPage tabReferences
System.Windows.Forms.Label label13
System.Windows.Forms.Button createReferenceButton
System.Windows.Forms.ContextMenuStrip createReferenceContextMenu
System.Windows.Forms.ToolStripMenuItem findProjectToolStripMenuItem
System.Windows.Forms.ToolStripSeparator toolStripMenuItem1
System.Windows.Forms.ListView listView1
System.Windows.Forms.ColumnHeader columnTitle
System.Windows.Forms.ImageList imageList1
System.Windows.Forms.TabControl tabControl2
System.Windows.Forms.TabPage tabRefInfo
System.Windows.Forms.TabPage tabRefComments
System.Windows.Forms.Label label12
System.Windows.Forms.Panel pnlRefInfo
System.Windows.Forms.Label lblDate
System.Windows.Forms.LinkLabel llblProjectLink
System.Windows.Forms.Label label14
System.Windows.Forms.Label lblStatus
System.Windows.Forms.TextBox txtStatus
System.Windows.Forms.GroupBox grpSuggestion
System.Windows.Forms.TextBox txtReason
System.Windows.Forms.Label label15
System.Windows.Forms.Panel panel3
System.Windows.Forms.Button btnDelRef
System.Windows.Forms.Panel panel5
System.Windows.Forms.Panel panel6
System.Windows.Forms.Panel panel8
System.Windows.Forms.Panel panel7
System.Windows.Forms.Button CreateReviewButton
System.Windows.Forms.GroupBox grpReview
System.Windows.Forms.Label label17
System.Windows.Forms.Label label16
System.Windows.Forms.TextBox textBox1
System.Windows.Forms.Label label19
System.Windows.Forms.Label label18
System.Windows.Forms.TrackBar trackBar1
System.Windows.Forms.TextBox textBox2
System.Windows.Forms.Label label20
CommentControls.WorkingCommentControl workingCommentControl1
CommentControls.WorkingCommentControl workingCommentControl2
System.Windows.Forms.Label label4
System.Windows.Forms.Label label10
System.Windows.Forms.TextBox textYear


Detailed Description

What shows the user data about literature entries, and allows them to edit that data.

Definition at line 16 of file LiteratureEntryView.cs.


Constructor & Destructor Documentation

Client.LiteratureEntryView.LiteratureEntryView ( IAccessHandler  accessHandler  ) 

Constructs a new LiteratureEntryView for creating a new instance of literature.

Parameters:
accessHandler An AccessHandler

Definition at line 33 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Client.LiteratureEntryView.btnSave, Client.LiteratureEntryView.dirty, Client.LiteratureEntryView.InitializeComponent(), Client.LiteratureEntryView.InitializeInfopage(), Client.LiteratureEntryView.newWindow, and Client.LiteratureEntryView.tagContainer1.

Here is the call graph for this function:

Client.LiteratureEntryView.LiteratureEntryView ( IAccessHandler  accessHandler,
LiteratureInfo  info 
)

Constructs a new LiteratureEntryView Form displaying the information of an existing piece of literature.

Parameters:
accessHandler An AccessHandler.
info The information to be displayed in the form. A LiteratureInfo struct.

Definition at line 52 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Client.LiteratureEntryView.btnSave, Client.LiteratureEntryView.dirty, Client.LiteratureEntryView.info, Client.LiteratureEntryView.InitializeComponent(), Client.LiteratureEntryView.InitializeInfopage(), and Client.LiteratureEntryView.newWindow.

Here is the call graph for this function:

Client.LiteratureEntryView.LiteratureEntryView ( IAccessHandler  accesshandler,
int  literature,
int  project,
bool  createReview 
)

Constructs a new LiteratureEntryView Form to create or edit reviews and references.

Parameters:
accesshandler An AccessHandler
literature The UniquelyIdentifiable id of the literature you wish to manage
project The UniquelyIdentifiable id of the project the review or reference is relative to
createReview Whether you wish to create a new review or simply view the existing relation

Definition at line 72 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Client.LiteratureEntryView.btnSave, Client.LiteratureEntryView.dirty, Shared.IAccessHandler.GetLiteratureInfo(), Client.LiteratureEntryView.InitializeComponent(), Client.LiteratureEntryView.InitializeInfopage(), Client.LiteratureEntryView.newWindow, Client.LiteratureEntryView.SelectReference(), Client.LiteratureEntryView.tabControl1, and Client.LiteratureEntryView.tabReferences.

Here is the call graph for this function:


Member Function Documentation

void Client.LiteratureEntryView.btnClose_Click ( object  sender,
EventArgs  e 
) [private]

Close the window - saving and such is handled elsewhere.

Parameters:
sender Who is calling?
e What arguments do they give us?

Definition at line 101 of file LiteratureEntryView.cs.

void Client.LiteratureEntryView.btnSave_Click ( object  sender,
EventArgs  e 
) [private]

Save the contents of the information section of the first tag.

Parameters:
sender Who is calling?
e What arguments do they give us?

Definition at line 111 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.Save().

Referenced by Client.LiteratureEntryView.InitializeComponent().

Here is the call graph for this function:

Here is the caller graph for this function:

bool Client.LiteratureEntryView.Save (  )  [private]

Perform the actual information saving operations.

Returns:
True if successful, false if the information could not be saved

Definition at line 119 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Client.LiteratureEntryView.btnSave, Client.LiteratureEntryView.comboBoxType, Shared.IAccessHandler.CreateLiterature(), Shared.LiteratureInfo.creator, Client.LiteratureEntryView.dirty, Shared.LiteratureInfo.id, Client.LiteratureEntryView.info, Client.LiteratureEntryView.InitializeTags(), Client.LiteratureEntryView.LiteratureInfo, Client.LiteratureEntryView.newWindow, Client.LiteratureEntryView.tagContainer1, Client.LiteratureEntryView.textBoxAuthors, Client.LiteratureEntryView.textBoxISBN, Client.LiteratureEntryView.textBoxSource, Client.LiteratureEntryView.textBoxSummary, Client.LiteratureEntryView.textBoxTitle, Client.LiteratureEntryView.textYear, and Shared.IAccessHandler.UpdateLiterature().

Referenced by Client.LiteratureEntryView.btnSave_Click(), Client.LiteratureEntryView.LiteratureEntryView_FormClosing(), and Client.LiteratureEntryView.tabControl1_Deselecting().

Here is the call graph for this function:

Here is the caller graph for this function:

void Client.LiteratureEntryView.InitializeInfopage (  )  [private]

Initializes the Info tabpage, by filling out the fields with the LiteratureInfo.

Definition at line 173 of file LiteratureEntryView.cs.

References Shared.LiteratureInfo.author, Client.LiteratureEntryView.comboBoxType, Shared.LiteratureInfo.date, Client.LiteratureEntryView.info, Client.LiteratureEntryView.InitializeTags(), Shared.LiteratureInfo.isbn, Shared.LiteratureInfo.source, Shared.LiteratureInfo.summary, Client.LiteratureEntryView.tagContainer1, Client.LiteratureEntryView.textBoxAuthors, Client.LiteratureEntryView.textBoxISBN, Client.LiteratureEntryView.textBoxSource, Client.LiteratureEntryView.textBoxSummary, Client.LiteratureEntryView.textBoxTitle, Client.LiteratureEntryView.textYear, Shared.LiteratureInfo.title, and Shared.LiteratureInfo.type.

Referenced by Client.LiteratureEntryView.LiteratureEntryView().

Here is the call graph for this function:

Here is the caller graph for this function:

void Client.LiteratureEntryView.InitializeTags (  )  [private]

Initializes the tag control by getting the tags from the accesshandler.

Definition at line 200 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Shared.IAccessHandler.GetTags(), Shared.LiteratureInfo.id, Client.LiteratureEntryView.info, and Client.LiteratureEntryView.tagContainer1.

Referenced by Client.LiteratureEntryView.InitializeInfopage(), and Client.LiteratureEntryView.Save().

Here is the call graph for this function:

Here is the caller graph for this function:

void Client.LiteratureEntryView.tagContainer1_TagAdded ( object  sender,
TagControls.TagContainerEventArgs  e 
) [private]

Calls the accesshandler when a tag was added to the tagcontainer.

Parameters:
sender 
e 

Definition at line 219 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Shared.IAccessHandler.AddTag(), Shared.LiteratureInfo.id, Client.LiteratureEntryView.info, and Client.LiteratureEntryView.tagContainer1.

Referenced by Client.LiteratureEntryView.InitializeComponent().

Here is the call graph for this function:

Here is the caller graph for this function:

void Client.LiteratureEntryView.tagContainer1_TagRemoved ( object  sender,
TagControls.TagContainerEventArgs  e 
) [private]

Calls the accesshandler when a tag was removed from the tagcontainer.

Parameters:
sender 
e 

Definition at line 229 of file LiteratureEntryView.cs.

References Shared.LiteratureInfo.id, Client.LiteratureEntryView.info, and Client.LiteratureEntryView.tagContainer1.

Referenced by Client.LiteratureEntryView.InitializeComponent().

Here is the caller graph for this function:

void Client.LiteratureEntryView.InitializeReferences (  )  [private]

Initializes the reference tabpage.

Definition at line 241 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Shared.IAccessHandler.GetProjectInfo(), Client.LiteratureEntryView.grpReview, Client.LiteratureEntryView.grpSuggestion, Shared.ProjectInfo.id, Shared.LiteratureInfo.id, Client.LiteratureEntryView.info, Client.LiteratureEntryView.InitializeProjectsCombobox(), Shared.IAccessHandler.ListReferences(), Shared.IAccessHandler.ListReviews(), Shared.IAccessHandler.ListSuggestions(), Client.LiteratureEntryView.listView1, Shared.ProjectInfo.title, and Shared.ProjectInfo.Title.

Referenced by Client.LiteratureEntryView.btnDelRef_Click(), Client.LiteratureEntryView.CreateReviewButton_Click(), Client.LiteratureEntryView.Project_Click(), and Client.LiteratureEntryView.tabControl1_Selecting().

Here is the call graph for this function:

Here is the caller graph for this function:

void Client.LiteratureEntryView.InitializeProjectsCombobox (  )  [private]

Initializes a list of all projects the user currently viewing, is involved in. The projects are only added to the list if they are not already referencing this literature.

Definition at line 298 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Client.LiteratureEntryView.createReferenceButton, Client.LiteratureEntryView.createReferenceContextMenu, Client.LiteratureEntryView.findProjectToolStripMenuItem, Shared.IAccessHandler.GetUsersProjects(), Shared.ProjectInfo.id, Client.LiteratureEntryView.listView1, Client.LiteratureEntryView.Project_Click(), Client.LiteratureEntryView.toolStripMenuItem1, and Shared.IAccessHandler.WhoAmI.

Referenced by Client.LiteratureEntryView.InitializeReferences(), and Client.LiteratureEntryView.Project_Click().

Here is the call graph for this function:

Here is the caller graph for this function:

void Client.LiteratureEntryView.Project_Click ( object  sender,
EventArgs  ea 
) [private]

Handles clicks in the context menu containing projects. Creates suggestions or references.

Parameters:
sender 
ea 

Definition at line 345 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Shared.IAccessHandler.CreateReference(), Shared.IAccessHandler.CreateSuggestion(), Shared.IAccessHandler.GetRoles(), Shared.LiteratureInfo.id, Shared.ProjectInfo.id, Client.LiteratureEntryView.info, Client.LiteratureEntryView.InitializeProjectsCombobox(), Client.LiteratureEntryView.InitializeReferences(), and Shared.IAccessHandler.WhoAmI.

Referenced by Client.LiteratureEntryView.InitializeProjectsCombobox().

Here is the call graph for this function:

Here is the caller graph for this function:

void Client.LiteratureEntryView.findProjectToolStripMenuItem_Click ( object  sender,
EventArgs  e 
) [private]

Opens a Reference filled with projects and lets the user select one to create a reference to.

Parameters:
sender 
e 

Definition at line 376 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.accessHandler, Shared.IAccessHandler.CreateReference(), Client.Reference.ID, Shared.IAccessHandler.ListItems(), and Shared.IAccessHandler.WhoAmI.

Here is the call graph for this function:

void Client.LiteratureEntryView.createReferenceButton_Click ( object  sender,
EventArgs  e 
) [private]

Shows the context menu containing projects.

Parameters:
sender 
e 

Definition at line 396 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.createReferenceButton, and Client.LiteratureEntryView.createReferenceContextMenu.

void Client.LiteratureEntryView.setDirty ( object  sender,
EventArgs  e 
) [private]

Mark the information section of the first tab dirty - called when changing any of the text boxes and the date-entry control.

Parameters:
sender Who is calling?
e What arguments do they give us?

Definition at line 660 of file LiteratureEntryView.cs.

References Client.LiteratureEntryView.btnSave, and Client.LiteratureEntryView.dirty.

Referenced by Client.LiteratureEntryView.InitializeComponent().

Here is the caller graph for this function:

override void Client.LiteratureEntryView.Dispose ( bool  disposing  )  [protected]

Clean up any resources being used.

Parameters:
disposing true if managed resources should be disposed; otherwise, false.

Definition at line 14 of file LiteratureEntryView.Designer.cs.

References Client.LiteratureEntryView.components.

void Client.LiteratureEntryView.InitializeComponent (  )  [private]

Required method for Designer support - do not modify the contents of this method with the code editor.

Definition at line 29 of file LiteratureEntryView.Designer.cs.

References Client.LiteratureEntryView.btnDelRef, Client.LiteratureEntryView.btnDelRef_Click(), Client.LiteratureEntryView.btnSave, Client.LiteratureEntryView.btnSave_Click(), Client.LiteratureEntryView.comboBoxType, Client.LiteratureEntryView.components, Client.LiteratureEntryView.CreateReviewButton, Client.LiteratureEntryView.CreateReviewButton_Click(), Client.LiteratureEntryView.dirtify(), Client.LiteratureEntryView.grpReview, Client.LiteratureEntryView.grpSuggestion, Client.LiteratureEntryView.label1, Client.LiteratureEntryView.label10, Client.LiteratureEntryView.label12, Client.LiteratureEntryView.label14, Client.LiteratureEntryView.label15, Client.LiteratureEntryView.label16, Client.LiteratureEntryView.label17, Client.LiteratureEntryView.label18, Client.LiteratureEntryView.label19, Client.LiteratureEntryView.label2, Client.LiteratureEntryView.label20, Client.LiteratureEntryView.label3, Client.LiteratureEntryView.label4, Client.LiteratureEntryView.label5, Client.LiteratureEntryView.label6, Client.LiteratureEntryView.label7, Client.LiteratureEntryView.label8, Client.LiteratureEntryView.label9, Client.LiteratureEntryView.lblDate, Client.LiteratureEntryView.lblStatus, Client.LiteratureEntryView.listView1, Client.LiteratureEntryView.llblProjectLink, Client.LiteratureEntryView.llblProjectLink_LinkClicked(), Client.LiteratureEntryView.panel3, Client.LiteratureEntryView.panel7, Client.LiteratureEntryView.panel8, Client.LiteratureEntryView.pnlRefInfo, Client.LiteratureEntryView.setDirty(), Client.LiteratureEntryView.tabComments, Client.LiteratureEntryView.tabControl1_Deselecting(), Client.LiteratureEntryView.tabControl1_Selecting(), Client.LiteratureEntryView.tabControl2, Client.LiteratureEntryView.tabControl2_Selecting(), Client.LiteratureEntryView.tabInfo, Client.LiteratureEntryView.tabRefComments, Client.LiteratureEntryView.tabReferences, Client.LiteratureEntryView.tabRefInfo, Client.LiteratureEntryView.tagContainer1, Client.LiteratureEntryView.tagContainer1_TagAdded(), Client.LiteratureEntryView.tagContainer1_TagRemoved(), Client.LiteratureEntryView.textBox1, Client.LiteratureEntryView.textBox1_Leave(), Client.LiteratureEntryView.textBox2, Client.LiteratureEntryView.textBoxAuthors, Client.LiteratureEntryView.textBoxISBN, Client.LiteratureEntryView.textBoxSource, Client.LiteratureEntryView.textBoxSummary, Client.LiteratureEntryView.textBoxTitle, Client.LiteratureEntryView.textYear, Client.LiteratureEntryView.trackBar1, Client.LiteratureEntryView.txtReason, Client.LiteratureEntryView.txtStatus, Client.LiteratureEntryView.txtStatus_Leave(), Client.LiteratureEntryView.workingCommentControl1, and Client.LiteratureEntryView.workingCommentControl2.

Referenced by Client.LiteratureEntryView.LiteratureEntryView().

Here is the call graph for this function:

Here is the caller graph for this function:


Member Data Documentation

LiteratureInfo Client.LiteratureEntryView.info [private]

Information about the literature entry being edited.

Definition at line 19 of file LiteratureEntryView.cs.

Referenced by Client.LiteratureEntryView.InitializeInfopage(), Client.LiteratureEntryView.InitializeReferences(), Client.LiteratureEntryView.InitializeTags(), Client.LiteratureEntryView.LiteratureEntryView(), Client.LiteratureEntryView.Project_Click(), Client.LiteratureEntryView.Save(), Client.LiteratureEntryView.tabControl1_Selecting(), Client.LiteratureEntryView.tabControl2_Selecting(), Client.LiteratureEntryView.tagContainer1_TagAdded(), and Client.LiteratureEntryView.tagContainer1_TagRemoved().

IAccessHandler Client.LiteratureEntryView.accessHandler [private]

The access handler used for saving and getting information used in the form.

Definition at line 21 of file LiteratureEntryView.cs.

Referenced by Client.LiteratureEntryView.btnDelRef_Click(), Client.LiteratureEntryView.CreateReviewButton_Click(), Client.LiteratureEntryView.dirtify(), Client.LiteratureEntryView.findProjectToolStripMenuItem_Click(), Client.LiteratureEntryView.InitializeProjectsCombobox(), Client.LiteratureEntryView.InitializeReferences(), Client.LiteratureEntryView.InitializeTags(), Client.LiteratureEntryView.listView1_SelectedIndexChanged(), Client.LiteratureEntryView.LiteratureEntryView(), Client.LiteratureEntryView.llblProjectLink_LinkClicked(), Client.LiteratureEntryView.Project_Click(), Client.LiteratureEntryView.Save(), Client.LiteratureEntryView.tabControl1_Selecting(), Client.LiteratureEntryView.tabControl2_Selecting(), Client.LiteratureEntryView.tagContainer1_TagAdded(), Client.LiteratureEntryView.textBox1_Leave(), and Client.LiteratureEntryView.txtStatus_Leave().

bool Client.LiteratureEntryView.newWindow = false [private]

Are we creating a new piece of literature?

Definition at line 23 of file LiteratureEntryView.cs.

Referenced by Client.LiteratureEntryView.LiteratureEntryView(), Client.LiteratureEntryView.Save(), and Client.LiteratureEntryView.tabControl1_Deselecting().

bool Client.LiteratureEntryView.createReview = false [private]

Are we creating a new review?

Definition at line 25 of file LiteratureEntryView.cs.

Referenced by Client.LiteratureEntryView.LiteratureEntryView_Shown().

bool Client.LiteratureEntryView.dirty = false [private]

True if the contents of the information section (first tab, minus TagContainer) has been changed.

Definition at line 27 of file LiteratureEntryView.cs.

Referenced by Client.LiteratureEntryView.LiteratureEntryView(), Client.LiteratureEntryView.LiteratureEntryView_FormClosing(), Client.LiteratureEntryView.Save(), Client.LiteratureEntryView.setDirty(), and Client.LiteratureEntryView.tabControl1_Deselecting().

System.ComponentModel.IContainer Client.LiteratureEntryView.components = null [private]

Required designer variable.

Definition at line 8 of file LiteratureEntryView.Designer.cs.

Referenced by Client.LiteratureEntryView.Dispose(), and Client.LiteratureEntryView.InitializeComponent().


Property Documentation

LiteratureInfo Client.LiteratureEntryView.LiteratureInfo [get, set]

Gets and sets the literature information contained in the LiteratureEntryView.

Definition at line 91 of file LiteratureEntryView.cs.

Referenced by Client.MainWindow.AddNewLiterature(), Client.MainWindow.mainGridView_CellMouseDoubleClick(), and Client.LiteratureEntryView.Save().


The documentation for this class was generated from the following files:
Generated on Thu Dec 21 06:23:03 2006 for SCRAML by  doxygen 1.5.1-p1