[Issue 17453] I Have Many Issues
via Digitalmars-d-bugs
digitalmars-d-bugs at puremagic.com
Wed May 31 15:05:35 PDT 2017
https://issues.dlang.org/show_bug.cgi?id=17453
--- Comment #7 from Soar <yoursgf at 126.com> ---
> > 3.can more good support for IntelliSense? such like "this.?" "variable.?"
>
> You might want to have a look at the language optionss (accessible through
> the Visual D menu), especially "show expansion when".
2.such like:
class MainForm : Form {
public this() {
this.text = "DGui Form";
this.size = Size(500, 400);
this.startPosition = FormStartPosition.centerScreen; // Set Form
Position
Label l=new Label();
l.position=Point(0,0);
l.text="Account ID..........";
l.parent=this;
// l.size = Size(60, 40);
}
}
//i cant list l.?
//i cant list this.?
i have setting the Visual D Setting> "DMD install path" "Impots paths" "Library
paths" and Intellisense>"writing an identifier"
where,not mate which i chose,thats still cant list the member after "l.?"
"this.?".
the library is from https://github.com/o3o/dguihub
--
More information about the Digitalmars-d-bugs
mailing list