jnm2 on v1.3.0
jnm2 on master
Updated for DevExpress 17.2.3.1… Version 1.3.0 (compare)
jnm2 on v1.2.0
jnm2 on master
Use MSBuild Pack Enabled warnings-as-errors and … Updated to DevExpress 17.2.3 and 3 more (compare)
jnm2 on devexpress17.2
jnm2 on master
Use modern csproj and DevExpres… Use MSBuild Pack Enabled warnings-as-errors and … and 4 more (compare)
jnm2 on master
Use MSBuild Pack Enabled warnings-as-errors and … Updated to DevExpress 17.2.3 and 3 more (compare)
jnm2 on master
Version 1.2.0 (compare)
jnm2 on master
Version 1.2.0 (compare)
jnm2 on master
Use modern csproj and DevExpres… Use MSBuild Pack Enabled warnings-as-errors and … and 3 more (compare)
jnm2 on devexpress17.2
Removed need for broken reflect… (compare)
SummaryFieldsFeature.Apply
should probably be the preferred way to do it, rather than ModdedEndUserDesigner.cs
.
XRDesignForm
with code
IDesignForm
gave access to the MDI controller and the dock manager, Apply
was more complicated and I thought adding a sample modded designer would be helpful. But I think it's probably more harmful than anything. It ended up helping to introduce a bug (#9).
hello..friends...
how can i get the mouse click a tabFormControl1 object
..Double click on the blank area
thankyou
i need your help
any help is welcome Thanks very much...
PS. excuse my English...i only know a little English....
this.tabFormControl1.MouseDown += F_MouseDown;
//here the click... it can click the pagetab..
//i don't want it click the tabtitle
if (e.X == 8 && e.Y == 9)
{
//click the tabtitle right : on the blank area
//i can do something
// such as i can change the form :
this.WindowState = FormWindowState.Maximized;
}
else
{
//is click the tab title... ...can do something
}