Skip to content

Instantly share code, notes, and snippets.

@Aroueterra
Last active February 8, 2020 03:37
Show Gist options
  • Save Aroueterra/76010a976aa30892d4b4b2ca4206fbce to your computer and use it in GitHub Desktop.
Save Aroueterra/76010a976aa30892d4b4b2ca4206fbce to your computer and use it in GitHub Desktop.
Implement these:
1. Book Request Form (Fund me page adds funds then triggers accepted ID with Title)
2. Search Method (Quick search: Late books; wanted books
3. Student Page
Helpful:
http://dspace.cusat.ac.in/jspui/bitstream/123456789/8218/1/library%20management%20system.pdf
https://core.ac.uk/download/pdf/61800086.pdf
For creating PDF use: Gembox
For excel operations use: Epplus
@Aroueterra
Copy link
Author

// in MainWindow.xaml.cs internal
internal static fooNameSpace.MainWindow tW1;

public partial class MainWindow
{
MakeStuffHappen helper = null;
public MainWindow()
{
OnInitialized += (s,e)=> { helper = new MakeStuffHappen(this.MyGridName); }
}
}
public class MakeStuffHappen
{
Grid theGrid = null;
public MakeStuffHappen(Grid grid)
{
theGrid = grid;
// Do stuff with the grid.
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment